Bubble Sort
Bubble Sort 버블정렬 맨 앞의 index부터 바로 옆의 index와 비교를 해서 큰 수가 오른쪽으로 자리하면서 더이상 비교할 값이 없을 때까지 정렬을 해나가는 알고리즘. 3 2 5 1 4 1st Pass - The largest number is placed at the last when each pass is complete. 한번의 실행마다 가장 큰 수가 가장 마지막 index 에 자리하게 된다. 2 3 1 4 5 2nd Pass 2 1 3 4 5 3rd Pass 1 2 3 4 5 Example Code in Java public class Main { public static void main(String[] args) { int arr[] = {3,2,5,1,4}; printArray(a..
Algorithms
2019. 7. 25. 04:08
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- HackerRank Algorithm
- javascript
- hackerrank
- Object type casting
- compareTo()
- spring boot application
- rest parameter
- string class in java
- hackerrank javascript solution
- code refactoring
- ... in Javascript
- HashMap
- 알고리즘
- java
- math.max
- 프로그래머스 알고리즘문제
- C++
- easy algorithm
- hackerrank solution
- 프로그래머스
- equals()
- hackerrank javascript
- substring()
- repeat()
- Collection Framework
- math.abs
- algorithm
- Javascript Algorithm
- 프로그래머스 알고리즘
- easy javascript algorithm
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함