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