This repository contains implementations of various Data Structures and Algorithms.
I am currently using Java, Python, and JavaScript. I am trying to learn Go and C++ simultaneously and implement them after I feel comfortable with them.
I haven't done every implementation in every language so here's a table to make things easier:
DS/Algo | C++ | Go | Java | JavaScript | Python |
---|---|---|---|---|---|
Linear Search | In-Progress | Solution | In-Progress | In-Progress | In-Progress |
Binary Search | In-Progress | Solution | In-Progress | In-Progress | In-Progress |
Singly Linked List | In-Progress | In-Progress | Solution | Solution | Solution |
Doubly Linked List | In-Progress | In-Progress | In-Progress | In-Progress | In-Progress |
Stack | In-Progress | In-Progress | In-Progress | In-Progress | Solution |
Queues | In-Progress | In-Progress | In-Progress | In-Progress | Solution |