文件名称:leetcode数组下标大于间距-go-rookie:Golang菜鸟
文件大小:25KB
文件格式:ZIP
更新时间:2024-07-20 10:57:22
系统开源
leetcode数组下标大于间距 Learning Golang & Algorithms From NO. NO. Algorithm rookie 冒泡排序 func BubbleSorter(array *[]int) { fmt.Println("BubbleSorter Start ", *array) len := len(*array) for i := 0; i < len; i++ { for j := 0; j < len-i-1; j++ { if (*array)[j] > (*array)[j+1] { (*array)[j], (*array)[j+1] = (*array)[j+1], (*array)[j] } } } fmt.Println("BubbleSorter End ", *array) } 快速排序 func QuickSorter(array *[]int, start int, end int) { if start > end { return } pivot, head, tail := sta
【文件预览】:
go-rookie-master
----go.mod(48B)
----main.go(736B)
----leetcode()
--------sum.go(794B)
--------zigzag.go(916B)
----active.env(889B)
----rsearch()
--------binary_srearch.go(2KB)
--------skip_list.go(3KB)
----other()
--------rookie()
--------web()
--------red_black_tree()
--------algorithm()
----README.md(17KB)
----rsort()
--------merge_sort.go(969B)
--------quick_sort.go(672B)
--------selection_sort.go(327B)
--------bubble_sort.go(631B)
--------insertion_sort.go(339B)
----.gitignore(58B)