{"id":31743335,"url":"https://github.com/rozeappletree/datastructures","last_synced_at":"2026-05-09T01:03:40.443Z","repository":{"id":104701364,"uuid":"241415466","full_name":"rozeappletree/Datastructures","owner":"rozeappletree","description":"Core Data Structures in Python/C/C++","archived":false,"fork":false,"pushed_at":"2020-09-19T07:35:43.000Z","size":398,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-09T11:54:54.959Z","etag":null,"topics":["c","cpp","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rozeappletree.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-02-18T16:50:00.000Z","updated_at":"2020-09-19T07:35:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"8f149f3e-6afb-497c-a198-4a1633544078","html_url":"https://github.com/rozeappletree/Datastructures","commit_stats":null,"previous_names":["farside-sh/datastructures","inf800/datastructures","seedometer/datastructures","couldatlas/datastructures","rozeappletree/datastructures"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rozeappletree/Datastructures","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rozeappletree%2FDatastructures","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rozeappletree%2FDatastructures/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rozeappletree%2FDatastructures/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rozeappletree%2FDatastructures/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rozeappletree","download_url":"https://codeload.github.com/rozeappletree/Datastructures/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rozeappletree%2FDatastructures/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32434623,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T13:34:34.882Z","status":"ssl_error","status_checked_at":"2026-04-29T13:34:29.830Z","response_time":110,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c","cpp","python3"],"created_at":"2025-10-09T11:53:32.785Z","updated_at":"2026-04-29T16:31:47.869Z","avatar_url":"https://github.com/rozeappletree.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Python Datastructures\n\n### 001. Basic Python\n\n   - [Immutability](PYTHON/001-python-101/001-immutability.py)\n   - [String Representation](PYTHON/001-python-101/002-repr-str.py)\n\n### 002. Recursion\n   - [Factorial](PYTHON/002-recursion/02-factorial.py)\n   - [Fibonacci](PYTHON/002-recursion/03-fib.py)\n   - [Reverse List](PYTHON/002-recursion/01-rev-list.py)\n   - [MiniMax](PYTHON/002-recursion/04-minimax.py)\n\n### 003. Sequences\n   - [Raw PyList](PYTHON/003-sequences/01-pyList.py) \n   - [Linked List](PYTHON/003-sequences/02-Linked-List.py)\n   - [Stack](PYTHON/003-sequences/03-stack.py)\n\n### 004. Sorting\n   - [Merge Sort](PYTHON/004-sorting/01-merge-sort.py)\n   - [Quick Sort](PYTHON/004-sorting/02-quick-sort.py)\n   - [Radix Sort](PYTHON/004-sorting/03-radix-sort.py)\n\n### 005. Sets and Hash Maps\n   - [Raw Set](PYTHON/005-sets-and-maps/01-set-class.py)\n   - [Raw Hash Map](PYTHON/005-sets-and-maps/02-hash-map.py)\n   - [Memoisation](PYTHON/005-sets-and-maps/03-memoisation.py)\n\n### 006. Trees\n   - [Basic Binary Tree](PYTHON/006-trees/01-trie-tree.py)\n   - [AST](PYTHON/006-trees/03-ast.py)\n   - [BST](PYTHON/006-trees/04-bst.py)\n   - [Trie Tree](PYTHON/006-trees/01-trie-tree.py)\n   - [KDTree](PYTHON/006-trees/05-kd-tree.py)\n\n### 007. Graphs\n   - [Adjacency List Representation]()PYTHON/007-graphs/00-01-graph-rep-adj-list.py\n   - [Adjacency Matrix Representation](PYTHON/007-graphs/00-02-graph-rep-adj-matrix.py)\n   - [Edge Representation](PYTHON/007-graphs/00-03-edge-rep.py)\n   - [BFS / Levelorder / Bruteforce](PYTHON/007-graphs/01-bfs-levelorder-bruteforce.py)\n   - [BFS / Backtracking / Exhaustive Search](PYTHON/007-graphs/02-dfs-backtracking-exhaustive-search.py)\n   - [Kruskal's MST](PYTHON/007-graphs/03-kruskals-algorithm.py)\n   - [Djikstra's Shortest Path](PYTHON/007-graphs/04-dijkstras-shortest-path--MST.py)\n\n### 008. Membership Datastructures\n   - [Bloom Filter](PYTHON/008-membership-datastructures/00-bloom-filter.py)\n   - [Trie Tree](PYTHON/008-membership-datastructures/01-trie-linked-list.py)\n\n### 009. Heaps\n   - [Max Top Heap](PYTHON/009-Heaps/00-heap.py)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frozeappletree%2Fdatastructures","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frozeappletree%2Fdatastructures","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frozeappletree%2Fdatastructures/lists"}