Skip to content

m1ns3c/code

Repository files navigation

code

Sort Algorithms

// compile c
$ gcc -g sort.h main.c insertion_sort.c -o insertion_sort

$ ./insertion_sort


// compile cpp
$ g++ -g sort.h main.c radix_sort.cpp -o radix_sort

$ ./radix_sort

Data Structure

  • Array
  • Stack
    • Generalized List/GList
  • Queue
    • Linked List Implementation
    • ArrayQueue
    • Deque
    • Priority Queue
    • Circular Queue
  • Singly-Linked List
    • Static List
    • Symmetric Matrix
    • Sparse Matrix
  • Doubly-Linked List
  • Skip List
  • Hash Table
    • Hash Function
    • Collision Resolution
  • Binary Search Tree
  • Cartesian Tree
  • B-Tree
  • Red-Black Tree
  • Splay Tree
  • AVL Tree
  • KD Tree
  • String
    • KMP

Algo

  • KMP
  • LCS
  • BFS / DFS
  • TOP k
  • Splay Tree
  • AVL Tree
  • Red-Black Tree

Appendix

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published