일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- #JAVASCRIPT
- #C++ has~a
- #자바상속#자바이즈어#is~a
- #android activity
- html plug-in
- hyperledger transaction
- #1차원배열
- mac terminal command
- relative path
- html code
- docker example
- html video
- 토큰경제
- html object
- html id
- #bubbleSort
- #성적관리프로그램
- #CallByAddress
- html5 new tag
- html youtube
- html charset
- #다차원포인터
- #C++ 연산자함수오버로딩
- html multimedia
- git flow
- 하이퍼레저패브릭
- #3차원배열
- #2차원배열
- border-box
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