Skip to content

Commit 6d1668b

Browse files
authored
Merge pull request TheAlgorithms#654 from SunggyuLee/master
Translate README to Korean Language
2 parents 217b85f + 3167e87 commit 6d1668b

File tree

1 file changed

+195
-0
lines changed

1 file changed

+195
-0
lines changed

README-ko.md

Lines changed: 195 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,195 @@
1+
# 알고리즘 - 자바
2+
3+
## [개발브런치](https://github.com/TheAlgorithms/Java/tree/Development)는 기존 프로젝트를 Java 프로젝트 구조로 재개발하기 위해 작성되었다. 기여도를 위해 개발 지사로 전환할 수 있다. 자세한 내용은 이 문제를 참조하십시오. 컨트리뷰션을 위해 [개발브런치](https://github.com/TheAlgorithms/Java/tree/Development)로 전환할 수 있다. 자세한 내용은 [이 이슈](https://github.com/TheAlgorithms/Java/issues/474)를 참고하십시오.
4+
5+
### 자바로 구현된 모든 알고리즘들 (교육용)
6+
7+
이것들은 단지 시범을 위한 것이다. 표준 자바 라이브러리에는 성능상의 이유로 더 나은 것들이 구현되어있다
8+
9+
## 정렬 알고리즘
10+
11+
12+
### Bubble(버블 정렬)
13+
![alt text][bubble-image]
14+
15+
From [Wikipedia][bubble-wiki]: 버블 소트(sinking sor라고도 불리움)는 리스트를 반복적인 단계로 접근하여 정렬한다. 각각의 짝을 비교하며, 순서가 잘못된 경우 그접한 아이템들을 스왑하는 알고리즘이다. 더 이상 스왑할 것이 없을 때까지 반복하며, 반복이 끝남음 리스트가 정렬되었음을 의미한다.
16+
17+
__속성__
18+
* 최악의 성능 O(n^2)
19+
* 최고의 성능 O(n)
20+
* 평균 성능 O(n^2)
21+
22+
###### View the algorithm in [action][bubble-toptal]
23+
24+
25+
26+
### Insertion(삽입 정렬)
27+
![alt text][insertion-image]
28+
29+
From [Wikipedia][insertion-wiki]: 삽입 정렬은 최종 정렬된 배열(또는 리스트)을 한번에 하나씩 구축하는 알고리즘이다. 이것은 큰 리스트에서 더 나은 알고리즘인 퀵 소트, 힙 소트, 또는 머지 소트보다 훨씬 안좋은 효율을 가진다. 그림에서 각 막대는 정렬해야 하는 배열의 요소를 나타낸다. 상단과 두 번째 상단 막대의 첫 번째 교차점에서 발생하는 것은 두 번째 요소가 첫 번째 요소보다 더 높은 우선 순위를 가지기 떄문에 막대로 표시되는 이러한 요소를 교환한 것이다. 이 방법을 반복하면 삽입 정렬이 완료된다.
30+
31+
__속성__
32+
* 최악의 성능 O(n^2)
33+
* 최고의 성능 O(n)
34+
* 평균 O(n^2)
35+
36+
###### View the algorithm in [action][insertion-toptal]
37+
38+
39+
### Merge
40+
![alt text][merge-image]
41+
42+
From [Wikipedia][merge-wiki]: In computer science, merge sort (also commonly spelt mergesort) is an efficient, general-purpose, comparison-based sorting algorithm. Most implementations produce a stable sort, which means that the implementation preserves the input order of equal elements in the sorted output. Mergesort is a divide and conquer algorithm that was invented by John von Neumann in 1945.
43+
44+
__Properties__
45+
* Worst case performance O(n log n) (typical)
46+
* Best case performance O(n log n)
47+
* Average case performance O(n log n)
48+
49+
50+
###### View the algorithm in [action][merge-toptal]
51+
52+
### Quick
53+
![alt text][quick-image]
54+
55+
From [Wikipedia][quick-wiki]: Quicksort (sometimes called partition-exchange sort) is an efficient sorting algorithm, serving as a systematic method for placing the elements of an array in order.
56+
57+
__Properties__
58+
* Worst case performance O(n^2)
59+
* Best case performance O(n log n) or O(n) with three-way partition
60+
* Average case performance O(n log n)
61+
62+
###### View the algorithm in [action][quick-toptal]
63+
64+
### Selection
65+
![alt text][selection-image]
66+
67+
From [Wikipedia][selection-wiki]: The algorithm divides the input list into two parts: the sublist of items already sorted, which is built up from left to right at the front (left) of the list, and the sublist of items remaining to be sorted that occupy the rest of the list. Initially, the sorted sublist is empty and the unsorted sublist is the entire input list. The algorithm proceeds by finding the smallest (or largest, depending on sorting order) element in the unsorted sublist, exchanging (swapping) it with the leftmost unsorted element (putting it in sorted order), and moving the sublist boundaries one element to the right.
68+
69+
__Properties__
70+
* Worst case performance O(n^2)
71+
* Best case performance O(n^2)
72+
* Average case performance O(n^2)
73+
74+
###### View the algorithm in [action][selection-toptal]
75+
76+
### Shell
77+
![alt text][shell-image]
78+
79+
From [Wikipedia][shell-wiki]: Shellsort is a generalization of insertion sort that allows the exchange of items that are far apart. The idea is to arrange the list of elements so that, starting anywhere, considering every nth element gives a sorted list. Such a list is said to be h-sorted. Equivalently, it can be thought of as h interleaved lists, each individually sorted.
80+
81+
__Properties__
82+
* Worst case performance O(nlog2 2n)
83+
* Best case performance O(n log n)
84+
* Average case performance depends on gap sequence
85+
86+
###### View the algorithm in [action][shell-toptal]
87+
88+
### Time-Compexity Graphs
89+
90+
Comparing the complexity of sorting algorithms (Bubble Sort, Insertion Sort, Selection Sort)
91+
92+
[Complexity Graphs](https://github.com/prateekiiest/Python/blob/master/sorts/sortinggraphs.png)
93+
94+
----------------------------------------------------------------------------------
95+
96+
## Search Algorithms
97+
98+
### Linear
99+
![alt text][linear-image]
100+
101+
From [Wikipedia][linear-wiki]: linear search or sequential search is a method for finding a target value within a list. It sequentially checks each element of the list for the target value until a match is found or until all the elements have been searched.
102+
The linear search runs in at the worst linear time and makes at most n comparisons, where n is the length of the list.
103+
104+
__Properties__
105+
* Worst case performance O(n)
106+
* Best case performance O(1)
107+
* Average case performance O(n)
108+
* Worst case space complexity O(1) iterative
109+
110+
### Binary
111+
![alt text][binary-image]
112+
113+
From [Wikipedia][binary-wiki]: Binary search, also known as half-interval search or logarithmic search, is a search algorithm that finds the position of a target value within a sorted array. It compares the target value to the middle element of the array; if they are unequal, the half in which the target cannot lie is eliminated and the search continues on the remaining half until it is successful.
114+
115+
__Properties__
116+
* Worst case performance O(log n)
117+
* Best case performance O(1)
118+
* Average case performance O(log n)
119+
* Worst case space complexity O(1)
120+
121+
From [Wikipedia][shell-wiki]: Shellsort is a generalization of insertion sort that allows the exchange of items that are far apart. The idea is to arrange the list of elements so that, starting anywhere, considering every nth element gives a sorted list. Such a list is said to be h-sorted. Equivalently, it can be thought of as h interleaved lists, each individually sorted.
122+
123+
__Properties__
124+
* Worst case performance O(nlog2 2n)
125+
* Best case performance O(n log n)
126+
* Average case performance depends on gap sequence
127+
128+
###### View the algorithm in [action][shell-toptal]
129+
130+
[bubble-toptal]: https://www.toptal.com/developers/sorting-algorithms/bubble-sort
131+
[bubble-wiki]: https://en.wikipedia.org/wiki/Bubble_sort
132+
[bubble-image]: https://upload.wikimedia.org/wikipedia/commons/thumb/8/83/Bubblesort-edited-color.svg/220px-Bubblesort-edited-color.svg.png "Bubble Sort"
133+
134+
[insertion-toptal]: https://www.toptal.com/developers/sorting-algorithms/insertion-sort
135+
[insertion-wiki]: https://en.wikipedia.org/wiki/Insertion_sort
136+
[insertion-image]: https://upload.wikimedia.org/wikipedia/commons/7/7e/Insertionsort-edited.png "Insertion Sort"
137+
138+
[quick-toptal]: https://www.toptal.com/developers/sorting-algorithms/quick-sort
139+
[quick-wiki]: https://en.wikipedia.org/wiki/Quicksort
140+
[quick-image]: https://upload.wikimedia.org/wikipedia/commons/6/6a/Sorting_quicksort_anim.gif "Quick Sort"
141+
142+
[merge-toptal]: https://www.toptal.com/developers/sorting-algorithms/merge-sort
143+
[merge-wiki]: https://en.wikipedia.org/wiki/Merge_sort
144+
[merge-image]: https://upload.wikimedia.org/wikipedia/commons/c/cc/Merge-sort-example-300px.gif "Merge Sort"
145+
146+
[selection-toptal]: https://www.toptal.com/developers/sorting-algorithms/selection-sort
147+
[selection-wiki]: https://en.wikipedia.org/wiki/Selection_sort
148+
[selection-image]: https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Selection_sort_animation.gif/250px-Selection_sort_animation.gif "Selection Sort Sort"
149+
150+
[shell-toptal]: https://www.toptal.com/developers/sorting-algorithms/shell-sort
151+
[shell-wiki]: https://en.wikipedia.org/wiki/Shellsort
152+
[shell-image]: https://upload.wikimedia.org/wikipedia/commons/d/d8/Sorting_shellsort_anim.gif "Shell Sort"
153+
154+
[linear-wiki]: https://en.wikipedia.org/wiki/Linear_search
155+
[linear-image]: http://www.tutorialspoint.com/data_structures_algorithms/images/linear_search.gif
156+
157+
[binary-wiki]: https://en.wikipedia.org/wiki/Binary_search_algorithm
158+
[binary-image]: https://upload.wikimedia.org/wikipedia/commons/f/f7/Binary_search_into_array.png
159+
160+
161+
--------------------------------------------------------------------
162+
## Links to the rest of the algorithms
163+
164+
Conversions | Dynamic Programming |Ciphers|Miscellaneous|
165+
----------- |----------------------------------------------------------------|-------|-------------|
166+
[Any Base to Any Base](Conversions/AnyBaseToAnyBase.java)| [Coin Change](Dynamic%20Programming/CoinChange.java)|[Caesar](ciphers/Caesar.java)|[Heap Sort](misc/heap_sort.java)|
167+
[Any Base to Decimal](Conversions/AnyBaseToDecimal.java)|[Egg Dropping](Dynamic%20Programming/EggDropping.java)|[Columnar Transposition Cipher](ciphers/ColumnarTranspositionCipher.java)|[Palindromic Prime Checker](misc/PalindromicPrime.java)|
168+
[Binary to Decimal](Conversions/BinaryToDecimal.java)|[Fibonacci](Dynamic%20Programming/Fibonacci.java)|[RSA](ciphers/RSA.java)|More soon...|
169+
[Binary to HexaDecimal](Conversions/BinaryToHexadecimal.java)|[Kadane Algorithm](Dynamic%20Programming/KadaneAlgorithm.java)|more coming soon...|
170+
[Binary to Octal](Conversions/BinaryToOctal.java)|[Knapsack](Dynamic%20Programming/Knapsack.java)|
171+
[Decimal To Any Base](Conversions/DecimalToAnyBase.java)|[Longest Common Subsequence](Dynamic%20Programming/LongestCommonSubsequence.java)|
172+
[Decimal To Binary](Conversions/DecimalToBinary.java)|[Longest Increasing Subsequence](Dynamic%20Programming/LongestIncreasingSubsequence.java)|
173+
[Decimal To Hexadecimal](Conversions/DecimalToHexaDecimal.java)|[Rod Cutting](Dynamic%20Programming/RodCutting.java)|
174+
and much more...| and more...|
175+
176+
### Data Structures
177+
Graphs|Heaps|Lists|Queues|
178+
------|-----|-----|------|
179+
[BFS](DataStructures/Graphs/BFS.java)|[Empty Heap Exception](DataStructures/Heaps/EmptyHeapException.java)|[Circle Linked List](DataStructures/Lists/CircleLinkedList.java)|[Generic Array List Queue](DataStructures/Queues/GenericArrayListQueue.java)|
180+
[DFS](DataStructures/Graphs/DFS.java)|[Heap](DataStructures/Heaps/Heap.java)|[Doubly Linked List](DataStructures/Lists/DoublyLinkedList.java)|[Queues](DataStructures/Queues/Queues.java)|
181+
[Graphs](DataStructures/Graphs/Graphs.java)|[Heap Element](DataStructures/Heaps/HeapElement.java)|[Singly Linked List](DataStructures/Lists/SinglyLinkedList.java)|
182+
[Kruskals Algorithm](DataStructures/Graphs/KruskalsAlgorithm.java)|[Max Heap](Data%Structures/Heaps/MaxHeap.java)|
183+
[Matrix Graphs](DataStructures/Graphs/MatrixGraphs.java)|[Min Heap](DataStructures/Heaps/MinHeap.java)|
184+
[PrimMST](DataStructures/Graphs/PrimMST.java)|
185+
186+
Stacks|Trees|
187+
------|-----|
188+
[Node Stack](DataStructures/Stacks/NodeStack.java)|[AVL Tree](DataStructures/Trees/AVLTree.java)|
189+
[Stack of Linked List](DataStructures/Stacks/StackOfLinkedList.java)|[Binary Tree](DataStructures/Trees/BinaryTree.java)|
190+
[Stacks](DataStructures/Stacks/Stacks.java)|And much more...|
191+
192+
* [Bags](DataStructures/Bags/Bag.java)
193+
* [Buffer](DataStructures/Buffers/CircularBuffer.java)
194+
* [HashMap](DataStructures/HashMap/HashMap.java)
195+
* [Matrix](DataStructures/Matrix/Matrix.java)

0 commit comments

Comments
 (0)