Skip to content

Data Structure Code Dump! πŸ’» Hey! Just sharing all my Data Strcutures college-level code that actually works. Linked lists, trees, postfix evaluation - the stuff we all struggled with in C. Fixed those annoying bugs that kept us up late. Take what you need! πŸ”₯

Notifications You must be signed in to change notification settings

Jia2005/Data-Structure-Codes

Repository files navigation

Data Structures Code Dump! πŸ’»πŸ”₯

Sup programmers! πŸ‘‹ Finally decided to organize my Data Structures code collection.

Disclaimer: These are all college-level implementations - they work but aren't super optimized (hey, we were just trying to pass! πŸ˜…)

What's included: πŸ“š

Linear Data Structures πŸ“‹

  • Singly Linked-List, Circular Linked-List
  • Stack using structure, Stack using Linked-List, Stack operations
  • Linear Queue, Circular Queue, Queue using Linked-List

Trees and Graphs 🌳

  • Binary Search Tree using Linked-List
  • BFS & DFS Graph Traversals

Hashing πŸ”

  • Hash Table (Division with Linear Probing)
  • Hash Table (Multiplication with Quadratic Probing)

Expression Evaluation βž—

  • Infix to Postfix
  • Postfix Evaluation

How to run: πŸš€

gcc filename.c 
./a.out

All code is in plain C - nothing fancy, just the standard libraries. πŸ‘¨β€πŸ’»

Note πŸ“

Found a bug? Open an issue or just fix it yourself - that's what I'd do! πŸ› These are from college assignments, so they focus more on understanding the concepts than being production-ready.

Feel free to grab whatever helps! ✌️

About

Data Structure Code Dump! πŸ’» Hey! Just sharing all my Data Strcutures college-level code that actually works. Linked lists, trees, postfix evaluation - the stuff we all struggled with in C. Fixed those annoying bugs that kept us up late. Take what you need! πŸ”₯

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages