yukiouma / algorithms-practice

Data structures and algorithms practice using golang

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

使用Go语言实现数据结构与算法

对应目录

  • 链表
    • 实现: /linear/linked_list.go
    • reverse linked list: /linear/reverse_linked_list.go
  • 堆栈
    • slice实现: /stack/slice_stack.go
    • 链表实现: /stack/linked_list_stack.go
    • 使用堆栈来实现一个简单的中缀表达式转后缀表达式求值: /stack/RPN.go
  • 队列
    • slice实现: /queue/slice_queue.go
    • 链表实现: /queue/linked_list_queue.go
    • 二分查找: /tree/binary_search.go

About

Data structures and algorithms practice using golang


Languages

Language:Go 100.0%