일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- #binary
- #1차원배열
- html charset
- html object
- #2차원배열
- hyperledger transaction
- #android activity
- #3차원배열
- html plug-in
- #C++ has~a
- html code
- border-box
- relative path
- docker example
- 하이퍼레저패브릭
- html id
- mac terminal command
- html video
- 토큰경제
- html multimedia
- #성적관리프로그램
- #JAVASCRIPT
- #bubbleSort
- #자바상속#자바이즈어#is~a
- #C++ 연산자함수오버로딩
- #CallByAddress
- html5 new tag
- html youtube
- git flow
- #다차원포인터
Archives
- Today
- Total
목록#단일링크드리스트 (1)
A sentimental robot
Single LinkedList Exercise3
#include #include #define ASSERT(exp) if(!(exp)){puts("Err\n");} struct Node { int data; struct Node* next; }; int Insert(struct Node* root, int position) { static int count=0; if(count next=NULL; for(int i=0; inext; } if(root->next==NULL){ // 처음 노드와 더미노드 연결 root->next = new1;..
Data Structure
2018. 1. 3. 13:50