Go
Go语言编程
AlexanderGan
Focus on VM & Compiler Now.
展开
-
Ubuntu18.04安装gRPC-Go的详细步骤(2021/10)
Ubuntu18.04安装gRPC-Go的详细步骤1、原创 2021-10-10 13:25:28 · 795 阅读 · 0 评论 -
图解旋转数组_Go实现C++ STL中的随机迭代器版本的rotate算法
旋转数组_Go实现C++ STL中的随机迭代器版本的rotate算法一、旋转数组(向左)的实现方法一 先上图:显然这个方式就是通过3遍reverse来实现旋转数组,这个方法比较简单,不是本文讨论的重点。二、Go实现的STL中的随机迭代器版本的rotate算法//辗转相除法求最大公约数func Gcd(a int ,b int) int{ max := Max(a,b) min := Min(a,b) for min!=0 { t := max % mi原创 2020-09-20 21:28:18 · 253 阅读 · 0 评论