Main Page: Difference between revisions

From Algowiki
Jump to navigation Jump to search
No edit summary
Line 11: Line 11:
* Binary Search
* Binary Search
=== Tree Algorithms ===
=== Tree Algorithms ===
* DFS
* [[Depth First Search]]
* B-Tree Rotate
* B-Tree Rotate
* B-Tree Merge
* B-Tree Merge
* B-Tree Split
* B-Tree Split
=== Graph Algorithms ===
=== Graph Algorithms ===
* Dijkstra
* Dijkstra

Revision as of 23:43, 9 September 2014

To Do

Asymptotic notation

String Matching Algorithms

Sorting Algorithms

  • Insertion Sort
  • Quicksort
  • Bubblesort
  • Mergesort
  • Bucketsort

Search Algorithms

  • Binary Search

Tree Algorithms

Graph Algorithms

  • Dijkstra
  • Kruskal
  • Prim
  • Bellman-Ford
  • a*

Flow Algorithms

  • Ford-Fulkerson

Data Structures

  • Linked List
  • Double Linked List
  • Hash Table
  • Hash Map
  • Binary Search Tree
  • B-Trees
  • Red-Black Tree
  • Graphs

Other Algorithms

  • CRC
  • Eulkid
  • Gauss
  • Fast Fourier Transformation
  • Bresenham