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 | 31 |
Tags
- 프론트엔드
- 해시테이블
- 스택
- 자료구조
- 이진탐색
- 배열
- 큐
- 타입스크립트
- 자바스크립트
- Machine Learning
- 코딩테스트
- GraphQL
- 프로세스
- RT scheduling
- C
- 프로그래머스
- 웹팩
- 연결 리스트
- 알고리즘
- 연결리스트
- 브라우저
- alexnet
- 릿코드
- RxJS
- 컨테이너
- 포인터
- vue3
- cors
- APOLLO
- pytorch
Archives
- Today
- Total
목록코테 (1)
프린세스 다이어리
[프로그래머스] 주식가격 문제 C언어 스택 활용한 풀이
나중에 여유가 생기면 다시 푸는 걸로...ㅠ 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