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
- 배열
- vue3
- 스택
- 코딩테스트
- 타입스크립트
- GraphQL
- 웹팩
- 릿코드
- 연결 리스트
- 이진탐색
- RT scheduling
- 프로그래머스
- pytorch
- cors
- 프로세스
- 컨테이너
- 해시테이블
- 자료구조
- Machine Learning
- 자바스크립트
- 브라우저
- 포인터
- APOLLO
- C
- 큐
- RxJS
- 알고리즘
- 프론트엔드
- alexnet
- 연결리스트
Archives
- Today
- Total
목록코테 (1)
프린세스 다이어리

나중에 여유가 생기면 다시 푸는 걸로...ㅠ 1. Node, Stack, push, pop, getTop 정의해주기 #include #include #include #define INF 99999999; typedef struct Node { int data; struct Node *next; } Node; typedef struct Stack { Node *top; int count; } Stack; void push(Stack *stack, int data) { Node *node = (Node*) malloc(sizeof(Node)); node -> data = data; node -> next = stack -> top; stack -> top = node; stack -> count++; } i..
자료구조, 알고리즘
2021. 10. 28. 12:00