Merge pull request #226 from nuomi1/feature/list-Swift

feat: add Swift codes for list article
This commit is contained in:
Yudong Jin
2023-01-10 00:52:53 +08:00
committed by GitHub
6 changed files with 357 additions and 7 deletions
@@ -1481,7 +1481,7 @@ $$
func bubbleSort(nums: inout [Int]) -> Int {
var count = 0 // 计数器
// 外循环:待排序元素数量为 n-1, n-2, ..., 1
for i in sequence(first: nums.count - 1, next: { $0 > 0 ? $0 - 1 : nil }) {
for i in sequence(first: nums.count - 1, next: { $0 > 0 + 1 ? $0 - 1 : nil }) {
// 内循环:冒泡操作
for j in 0 ..< i {
if nums[j] > nums[j + 1] {