버블 정렬
-
[Sort] Bubble Sort (버블 정렬, 거품 정렬)Basic Programming/Algorithm 2018. 12. 10. 18:42
Bubble sort (버블 정렬) Bubble sort is a basic sort algorithm.1. choose one object in the j(th) position in arraylist from the beginning.2. compare with the next object. If the chosen object is bigger than next object, swap objects. 3. Add one to j and increment to the end of the arraylist. Repeat this process until the end of arraylist.4. Repeat 1~3 process for length of array times. ** j (second l..