Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chenmingyong0423/algorithms

Data Structures and Algorithms implemented in Go. 基于 Go 语言使用泛型实现的数据结构与算法.
https://github.com/chenmingyong0423/algorithms

algorithms data-structures go golang

Last synced: 23 days ago
JSON representation

Data Structures and Algorithms implemented in Go. 基于 Go 语言使用泛型实现的数据结构与算法.

Awesome Lists containing this project

README

        

# Algorithms in Go
Data structures and algorithms implemented with generics in Go.
# List of Data structures
## Linked List
- [SinglyLinkedList](https://github.com/chenmingyong0423/algorithms/blob/main/linked_list/singly_linked_list.go)
- [DoublyLinkedList](https://github.com/chenmingyong0423/algorithms/blob/main/linked_list/doubly_linked_list.go)
- [ConcurrentLinkedList](https://github.com/chenmingyong0423/algorithms/blob/main/linked_list/concurrent_linked_list.go)
## Stack
- [ArrayStack](https://github.com/chenmingyong0423/algorithms/blob/main/stack/array_stack.go)
- [LinkedListStack](https://github.com/chenmingyong0423/algorithms/blob/main/stack/linked_list_stack.go)