Algorithm 141

[Reference Code] Stack 풀어보기

https://swexpertacademy.com/main/code/referenceCode/referenceCodeDetail.do?referenceId=AVuoqWnqAADw5fUK&category=DataStructure SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com C언어 답안 #include int main(void) { int stack[100] = { 0, }; int tc_cnt, data_size; scanf("%d", &tc_cnt); for (int i=0; i= 0; ds--) { printf("%d ", stack[ds]); } printf("\n"); } } 결과

Algorithm/SWEA 2021.06.08

[SWEA] Advanced 등급 / A형 알고리즘 유형과 강의, 문제

알고리즘 BFS (너비 우선 탐색 알고리즘) https://gmlwjd9405.github.io/2018/08/15/algorithm-bfs.html [알고리즘] 너비 우선 탐색(BFS)이란 - Heee's Development Blog Step by step goes a long way. gmlwjd9405.github.io DFS (깊이 우선 탐색 알고리즘) https://gmlwjd9405.github.io/2018/08/14/algorithm-dfs.html [알고리즘] 깊이 우선 탐색(DFS)이란 - Heee's Development Blog Step by step goes a long way. gmlwjd9405.github.io 백트래킹 https://chanhuiseok.github.io/..

Algorithm/SWEA 2021.06.08
반응형