算法golang篇

Posted 八千岁将军

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了算法golang篇相关的知识,希望对你有一定的参考价值。


1.slice反转,偏移
func reverse(s []int) {
    for i, j := 0, len(s) -1 ; i < j; i, j = i+1, j-1 {
        s[i], s[j] = s[j], s[i]
    }
}

一种将slice元素循环向左旋转n个元素的方法是三次调用reverse反转函数,第一次是反转开头 的n个元素,然后是反转剩下的元素,最后是反转整个slice的元素。(如果是向右循环旋转, 则将第三个函数调用移到第一个调用位置就可以了。)

a := [...]int{0, 1, 2, 3, 4, 5}
//Rotate a left    by two positions.
reverse(a[:2])
reverse(a[2:])
reverse(a[:])
//output [2 3 4 5 0 1]

以上是关于算法golang篇的主要内容,如果未能解决你的问题,请参考以下文章

代码片段 - Golang 实现简单的 Web 服务器

代码片段 - Golang 实现集合操作

算法golang篇

json [Golang] golang #golang #snippets中有用的片段

扫描算法(SCAN)——磁盘调度管理

java golang oop 2文章片段