{"id":17894018,"url":"https://github.com/grantgasser/linked-list","last_synced_at":"2025-08-26T14:33:09.387Z","repository":{"id":129537430,"uuid":"197483168","full_name":"grantgasser/linked-list","owner":"grantgasser","description":"Linked List in Python","archived":false,"fork":false,"pushed_at":"2019-09-11T03:02:49.000Z","size":22,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-03T04:18:23.951Z","etag":null,"topics":["binary-tree","linked-list","oop"],"latest_commit_sha":null,"homepage":null,"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/grantgasser.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}},"created_at":"2019-07-18T00:42:46.000Z","updated_at":"2019-09-11T03:02:51.000Z","dependencies_parsed_at":"2023-03-13T11:21:28.782Z","dependency_job_id":null,"html_url":"https://github.com/grantgasser/linked-list","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/grantgasser/linked-list","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grantgasser%2Flinked-list","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grantgasser%2Flinked-list/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grantgasser%2Flinked-list/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grantgasser%2Flinked-list/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/grantgasser","download_url":"https://codeload.github.com/grantgasser/linked-list/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grantgasser%2Flinked-list/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261628962,"owners_count":23186943,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["binary-tree","linked-list","oop"],"created_at":"2024-10-28T14:58:58.653Z","updated_at":"2025-06-24T07:33:48.366Z","avatar_url":"https://github.com/grantgasser.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Summary\n\nThis started as a practice project to implement a linked list in Python. Having learned data structures in C++, I wanted to see how to implement them in Python as I learn more about OOP in Python. \n\nThis project is also an exercise in seeing how interrelated common data structures are. For example, a linked list can be implemented as a stack. Also, a binary search tree can be built using the core functionality (nodes and pointers) of a linked list. Additionally, a tree can also be thought of as a graph where the nodes and pointers are vertices and edges. \n\nThe project will probably be renamed, since linked-list will no longer be very descriptive. This is an experimental project.\n\n\n## Linked List (base of the project)\nUsing the Node class, the List class just contains a head. It has methods that allow it to retrieve the head, append new data, get data at a certain position, insert, delete, reverse, and more.\n\n## Stack \nInherits from the Linked List class. \n\n## Tree Node \nInherits from Node class used for linked lists. \n\n## Binary Search Tree\nUsing the tree node class, creates a binary search tree with given data.\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrantgasser%2Flinked-list","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgrantgasser%2Flinked-list","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrantgasser%2Flinked-list/lists"}