Skip to content

lapuda/data_structs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

data_structs

golang‘s data structs

栈(Stack) 一种后进先出(FILO)的数据结构 查找的时间复杂度为O(N)

队列(Queue) 一种先进先出(FIFO)的数据结构 查找的时间复杂度为O(N)

二叉树 (binary tree ) 一种图(这里主要是二叉树)的数据结构,一个分支最多两个节点 查找的时间复杂度为 O(log2N)

About

golang‘s data structs

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages