REPOSITORY OVERVIEWLive repository statistics
★ 139Stars
⑂ 57Forks
◯ 15Open issues
◉ 139Watchers
69/100
OPENREPOHUB HEALTH SIGNALHealthy signals
A transparent discovery signal based on current public GitHub metadata.
Recent activity35% weight
100 Community adoption25% weight
43 Maintenance state20% weight
65 License clarity10% weight
0 Project information10% weight
100 This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
README preview

Cmd
# 1) (claude code) add time, space complexity to java class
claude
/add-time-space BinarySearch
/add-time-space BFS
# ....
Resource
-
LC classics problems
-
LC experiences
-
Data structure
-
System design
-
Tools
-
LC SQL resources
Algorithms content
Database
Shell
Progress
Data Structure
| # | Title | Solution | Use case | Comment | Status |
|---|
| Linear | | | | |
| Array | Py | | | AGAIN* |
| Queue | Py, JS | | | AGAIN* |
| Stack | Py, JS (linkedlist), JS (array) | | | OK |
| Hash table | Py, JS | usually for improving time complexity B(O) via extra space complexity (time-space tradeoff) | good basic | AGAIN**** |
| Linear, Pointer | | | | |
| LinkedList | Py, JS, Java | | | OK** |
| Doubly LinkedList | Python, JS | | | AGAIN |
| Non Linear, Pointer | | | | |
| Tree | Py | | | AGAIN** |
| Binary search Tree (BST) |
Algorithm
| # | Title | Solution | Use case | Comment | Time complexity | Space complexity | Status |
|---|
| Binary search | Python | complexity ref | Best : O(1), Avg : O(log N), Worst : O(log N) | | | AGAIN |
| Linear search | Python | | | | | AGAIN |
| Breadth-first search (BFS) | Python | FIND SHORTEST PATH | | | | AGAIN*** |
| Depth-first search (DFS) | Python | TO CHECK IF SOMETHING EXIST | inorder, postorder, postorder (can recreate a tree) | Adjacency List: O(V+E), Adjacency Matrix: O(V^2) | O(V) (V:Vertices, E:Edges) | AGAIN*** |
| Bubble sort | Python | | | | | OK* (3) |
| Insertion sort | Python, InsertionSort.java | stable sort | work very fast for nearly sorted array | Best :O(n), Average : O(n^2), Worst : O(n^2) | Worst : O(1) | AGAIN |
| Bucket sort | Python, BucketSort.java | | | | | AGAIN |
ALGORITHMICALLY RELATEDSimilar Open-Source Projects
Selected from shared topics, language and repository description—not editorial ratings.
Currently learning Java, Data Structures & Algorithms, HTML, CSS, and Web Development. I enjoy building simple and useful projects, improving my problem-solving skills, and exploring new technologies. My goal is to become a skilled Software Developer.
59/100 healthRecently updatedActive repository
No license
⑂ 0 forks◯ 0 issuesUpdated 6 days ago
I made this project as part of my academic curriculum. The project is primarily an E- Learning Portal which focused on providing the rudimentary courses for Computer Science undergraduates that involved courses like Data Structures and Algorithms, Operating System , Database Management System, Theory of Computation and many more. The portal provided video lectures ,eBooks and quizzes for the respective course where the learner can evaluate their knowledge.The portal also included a discussion forum where learners could post their queries and discussion among learners can take place. Technologies used for completion of the project are Java, SQL, HTML, CSS, Javascript, AJAX
31/100 healthActive repository
JavaScriptNo license#ajax#css3