버블정렬1 (Javascript) bubbleSort bubbleSort(버블정렬) function swap(arr, idx1, idx2) { const temp = arr[idx1]; arr[idx1] = arr[idx2]; arr[idx2] = temp; } function bubbleSort(arr) { const tempArr = [...arr]; for (let i = 0; i tempArr[j + 1]) swap(tempArr, j, j + 1); } } return tempArr; } const tempArr = […arr] 원본 배열을 수정하지 않기 위해 스프레드를 통해 새로운 임시 배.. 2023. 1. 16. 이전 1 다음