sipt / kit4go

算法笔记

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

algorithm

算法笔记

目录

├── LICENSE
├── README.md
├── math
│   ├── 2power.go //快速判断是否是2的乘方
│   └── gcd.go //求最大公约数结合更相减损术和移位
├── structure
│   ├── list
│   │   ├── double_linked_list.go //双链表
│   │   └── singly_linked_list.go //单链表
│   └── stack
│       └── stack.go //栈(基于双链表)
└── util
    └── common.go

About

算法笔记

License:Apache License 2.0


Languages

Language:Go 100.0%