All Projects → abishekaditya → DSA

abishekaditya / DSA

Licence: other
Project : Data Structures and Algorithms in C#

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to DSA

Data-Structure-Algorithm-Programs
This Repo consists of Data structures and Algorithms
Stars: ✭ 464 (+1396.77%)
Mutual labels:  heap, searching-algorithms
Data-Structures-Algorithms-Handbook
A series of important questions with solutions to crack the coding interview and ace it!
Stars: ✭ 30 (-3.23%)
Mutual labels:  heap, searching-algorithms
Isoalloc
A general purpose memory allocator that implements an isolation security strategy to mitigate memory safety issues while maintaining good performance
Stars: ✭ 130 (+319.35%)
Mutual labels:  heap
AI-Programming-using-Python
This repository contains implementation of different AI algorithms, based on the 4th edition of amazing AI Book, Artificial Intelligence A Modern Approach
Stars: ✭ 43 (+38.71%)
Mutual labels:  searching-algorithms
C Macro Collections
Easy to use, header only, macro generated, generic and type-safe Data Structures in C
Stars: ✭ 192 (+519.35%)
Mutual labels:  heap
Lagmonitor
Monitor performance of your Minecraft server. Similar to VisualVM and Java Mission Control.
Stars: ✭ 147 (+374.19%)
Mutual labels:  heap
Ngraph.path
Path finding in a graph
Stars: ✭ 2,545 (+8109.68%)
Mutual labels:  heap
Libmemory
Embedded systems memory management library. Implementations for malloc(), free(), and other useful memory management functions
Stars: ✭ 102 (+229.03%)
Mutual labels:  heap
NALib
General purpose C sourcecode collection
Stars: ✭ 16 (-48.39%)
Mutual labels:  heap
Mysql Magic
dump mysql client password from memory
Stars: ✭ 183 (+490.32%)
Mutual labels:  heap
interview-cookbook
A playground for learning DataStructures, Algorithms, and Object-Oriented Concepts.
Stars: ✭ 25 (-19.35%)
Mutual labels:  searching-algorithms
Heapinspect
🔍Heap analysis tool for CTF pwn.
Stars: ✭ 177 (+470.97%)
Mutual labels:  heap
Memoro
Memoro: A Detailed Heap Profiler
Stars: ✭ 159 (+412.9%)
Mutual labels:  heap
Fastpriorityqueue.js
a fast heap-based priority queue in JavaScript
Stars: ✭ 240 (+674.19%)
Mutual labels:  heap
Binarytree
Python Library for Studying Binary Trees
Stars: ✭ 1,694 (+5364.52%)
Mutual labels:  heap
bulksearch
Lightweight and read-write optimized full text search library.
Stars: ✭ 108 (+248.39%)
Mutual labels:  searching-algorithms
Cs2223
This a repository for WPI CS2223 Algorithms D Term 2018
Stars: ✭ 121 (+290.32%)
Mutual labels:  heap
Data Structures
A collection of powerful data structures
Stars: ✭ 2,534 (+8074.19%)
Mutual labels:  heap
PixelGlitch
Image glitch visualization using various Pixel Sorting methods for Processing
Stars: ✭ 25 (-19.35%)
Mutual labels:  heap
GoGPUtils
Enhance productivity and avoid to reinvent the wheel every time that you start a Go project
Stars: ✭ 29 (-6.45%)
Mutual labels:  searching-algorithms

Data Structures and Algorithms in C#

Simple Data Structures

  1. Linked List
  2. Double Linked List
  3. Stack
  4. Queue

Trees

  1. Binary Tree
  2. Binary Search Tree
  3. B+ Tree (deletion remaining)
  4. AVL Tree
  5. Red Black Tree (deletion remaining)
  6. Splay Tree
  7. Heap
    • Min Heap
    • Max Heap
  8. Trie
  9. Huffman

Sorting (HIGHEST)

  1. Bubble
  2. Insertion
  3. Selection
  4. Heap
  5. Radix
  6. Quick
  7. Shell
  8. Merge
  9. Tim
  10. Cocktail

  1. KMP
  2. Rabin-Karp

Graph Traversal (HIGH)

  1. Adjacency List
  2. Adjacency Matrix
  3. BFS
  4. DFS
  5. Topoligical Sort
  6. Prim
  7. Kruskal
  8. Djikstra
  9. Floyd Warshall
  10. Bellman Ford
  11. A*
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].