repository
0.0.0-20230211020518-23d303d4c76a
Repository: https://github.com/santoshmano/gobricks.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# README
gobricks
Learning Golang brick by brick
Happy to hear your feedback - [email protected]
Lists, Stacks, Queues
Data Structure | Links | Notes |
---|---|---|
Singly Linked List | Singly linked list to store any type of value | |
Array Stack | Stack ADT implemented using Array Slices | |
Min Stack | leetcode | Stack ADT with a GetMin() operation, which returns the mininum of all all the elements of the stack |
Problems | Links | Notes |
---|---|---|
Linked list Cycle | leetcode | |
Linked list Cycle 2 | leetcode |
Arrays
Problems | Links | Notes |
---|---|---|
Best time to buy and sell stock |
Sorting
Algorithms | Links | Notes |
---|---|---|
BubbleSort | ||
SelectionSort | ||
InsertionSort | ||
QuickSort | ||
MergeSort |
CycleSort Related