[Algorithm] BackTracking(백트래킹)
03/01/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶BackTracking
이번 시간에는 백트래킹 알고리즘에 대해서 알아보도록 하겠다.
03/01/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶BackTracking
이번 시간에는 백트래킹 알고리즘에 대해서 알아보도록 하겠다.
02/28/2022 ▶Computer Science ▶Data structures and algorithms with Java
이번 시간에는 분할 정복 알고리즘(Divide & Conquer Algorithm)에 대해서 알아보도록 할 것이다.
02/27/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶BruteForce
이번 시간에는 완전 탐색(브루트 포스)에 대해서 배워보도록 할 것이다.
02/26/2022 ▶Computer Science ▶Data structures and algorithms with Java
이번 시간에는 자료구조 트라이에 대해 알아보도록 하겠다.
02/25/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶Sorting
이번 시간에는 쉘 정렬(Shell Sort)에 대해서 배워볼 것이다.
02/23/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶Graph
이번 시간에는 위상정렬에 대해서 배워 보도록 할 것이다.
02/22/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶Greedy
02/21/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶DynamicProgramming
02/20/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶Dijkstra
이번 시간에는 다익스트라 라는 최단 거리를 알아내는 알고리즘에 대해 배워 보도록 하겠다.
02/19/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶Graph
이번 시간에는 그래프 탐색 방법 중 너비 우선 탐색(BFS)에 대해서 배워볼 것이다.
02/19/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶Graph
이번 시간에는 그래프 탐색 방법 중 깊이 우선 탐색(DFS)에 대해서 배워볼 것이다.
02/18/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶Graph
이번 시간에는 그래프에 대해 알아보도록 하겠습니다.
02/17/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶Heap
ㅣ이번 시간에는 Heap 자료구조와 우선순위 큐 (Priority Queue)에 대해서 알아보자.
02/16/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶Tree
이번 시간에는 트리 구조에 대해서 배워보도록 하겠습니다.
02/15/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶Sorting
이번시간에는 퀵 정렬에 대해서 배워 보도록 하겠다.
02/14/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶Sorting
이번 시간에는 merge sorting에 대해서 배워보도록 하겠다.
02/14/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶Sorting
이번 시간에는 삽입 정렬(Insertion Sorting)에 대해 배워 보도록 하겠다.
02/14/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶Sorting
이번 시간에는 정렬의 종류 중 버블 정렬에 대해서 배워보도록 하겠습니다.
02/13/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶Sorting
그 동안 배운 자료구조를 통해 데이터를 다루는 방법에 대해 알아 보도록 하겠다.
02/13/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶BinarySearch
이번 시간에는 저번 시간(이진 탐색)에 이어서 점프 탐색(Jump search)에 대해서 알아보도록 하자.
02/13/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶BinarySearch
이번 시간에는 보간 탐색(Interpolation Search), 삼진 탐색(Ternary Search), 지수 탐색(Exponential Search)에 대해서 알아 보도록 하겠다.
02/13/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶BinarySearch
이번 시간에는 이진 탐색(Binary Search)에 대해서 알아볼 것이다.
02/12/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶Hash
이번 시간에는 해시에 대해 배워 볼 것이다.
02/11/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶Queue
이번 시간에 배워 볼 내용은 Queue(큐)이다.
02/10/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶Stack
이번 시간에는 Stack 자료구조에 대해서 배워 볼 것이다.
02/09/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶LinkedList
이번 시간에는 LinkedList의 종류 중에서 Double LinkedList에 대해서 알아 볼 것이다.
02/08/2022 ▶Computer Science ▶Data structures and algorithms with Java ▶Algorithm ▶LinkedList
ArrayList에서 했던 것과 마찬가지로 LinkedList에서의 데이터 삽입, 데이터 삭제, 리스트 검색 등의 기능에 대해서 다뤄보도록 하겠다.
02/07/2022 ▶Computer Science ▶Data structures and algorithms with Java
이번 시간에는 리스트(배열)에 대해서 알아 볼 것이다.
02/06/2022 ▶Computer Science ▶Data structures and algorithms with Java
02/05/2022 ▶Computer Science ▶Data structures and algorithms with Java