반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- java역사
- mglearn
- bccard
- KNeighborsClassifier
- CES 2O21 참여
- cudnn
- broscoding
- web 용어
- pycharm
- vscode
- html
- C언어
- 대이터
- web 개발
- 머신러닝
- web
- web 사진
- classification
- Keras
- tensorflow
- CES 2O21 참가
- discrete_scatter
- 재귀함수
- paragraph
- 자료구조
- 웹 용어
- postorder
- 결합전문기관
- inorder
- 데이터전문기관
Archives
- Today
- Total
목록linkedlist (1)
bro's coding
datastructure.Linked list(다항식 덧셈) in C
1. node구조 정의 -struct Node* link : 다음 연결 될(된)노드의 주소를 저장하기 위함 2. head(first)구조 정의 Linked list를 이용 할 때, 시작점을 찾기 위함 3. head(first) reset head(first/시작점)를 비우는 function 4. list 생성 1. newNode를 생성 2. newNode에 coef와 expo값을 assign 3. link(next)값을 비움(NULL은 종료의 의미로 사용됨) 조건문 if(head가 비어있다면){ head에 방금 만들어진 newNode를 assign하고 종료 } else(그렇지 않다면){ 임시로 만들어 놓은 P에 head를 assign while(link가 NULL이 될 때 까지 반복){ P에다 P다음거를..
[IT]/[Data structure] in C
2019. 10. 7. 17:53