go--sort對數組進行排序

來源:互聯網
上載者:User

標籤:str   func   pac   直接   oat   一個   sea   返回   切片   

package mainimport ("sort""fmt")func main(){// 1.對整形數組排序s1 := [...]int{1,3,43,3,5,6,32,56,7,8,53,}sort.Ints(s1[:])  //切片本質上是對底層數組的一個view,不能直接修改view,通過視圖來修改fmt.Println(s1) //[1 3 3 5 6 7 8 32 43 53 56]// 2.對字串類型數組進行排序s2:=[...]string{"mashiro","satori","hatsunemiku"}sort.Strings(s2[:])fmt.Println(s2) //[hatsunemiku mashiro satori]// 3.對浮點數類型數組進行排序s3:=[...]float64{12.3,31.31,312.2,1.1,43,2}sort.Float64s(s3[:])fmt.Println(s3) //[1.1 2 12.3 31.31 43 312.2]// 4.尋找一個int在數組中的索引s4:=[...]int{2,3,452,1,3,4,5,67}index:=sort.SearchInts(s4[:],3)fmt.Println(index) //如果有多個,只返回第一個// 5.尋找一個string在數組中的位置s5:=[...]string{"mashiro","satori","hatsunemiku"}index1 := sort.SearchStrings(s5[:],"mashiro")fmt.Println(index1) //0}

  

go--sort對數組進行排序

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.