일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- html youtube
- html code
- border-box
- hyperledger transaction
- #성적관리프로그램
- html video
- html5 new tag
- git flow
- html charset
- #android activity
- #C++ 연산자함수오버로딩
- mac terminal command
- 하이퍼레저패브릭
- #bubbleSort
- html plug-in
- html object
- docker example
- html id
- #다차원포인터
- #CallByAddress
- #JAVASCRIPT
- #binary
- 토큰경제
- #2차원배열
- #3차원배열
- #1차원배열
- relative path
- html multimedia
- #C++ has~a
- #자바상속#자바이즈어#is~a
Archives
- Today
- Total
목록#Single LinkedList (1)
A sentimental robot
Single LinkedList Exercise
#include struct stu { int num; struct stu*next; }; // 자기참조 구조체 void main() { struct stu*head; // 첫번째 노드를 가르키는 포인터 struct stu*cur; // 잡일(검색,출력 ect..) struct stu*del; // 정적메모리로 할당 시 사용하지 않음 struct stu*new1; // 정적메모리로 할당 시 사용하지 않음 struct stu aa, bb, cc; // 정적메모리로 할당 aa.num = 1; bb.num = 2; cc.num = 3; // 연결 cur = head = &aa; cur->next = &bb; cur->next->next = &cc; cur->next->next->next = NULL; cur ..
Data Structure
2018. 1. 3. 11:27