{"id":38440367,"url":"https://github.com/romaletodiani/dsa","last_synced_at":"2026-01-17T04:34:33.355Z","repository":{"id":215739222,"uuid":"739670886","full_name":"RomaLetodiani/DSA","owner":"RomaLetodiani","description":"Data Structures \u0026 Algorithms","archived":false,"fork":false,"pushed_at":"2024-05-11T11:40:09.000Z","size":1497,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-10T12:29:26.769Z","etag":null,"topics":["algorithms","csharp","data-structures","javascript","python","typescript"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RomaLetodiani.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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":"2024-01-06T07:10:06.000Z","updated_at":"2024-07-21T13:21:57.000Z","dependencies_parsed_at":"2024-05-01T13:00:23.215Z","dependency_job_id":"0f242f0b-d9c5-401f-8f3b-0a1c30e376de","html_url":"https://github.com/RomaLetodiani/DSA","commit_stats":{"total_commits":65,"total_committers":2,"mean_commits":32.5,"dds":0.09230769230769231,"last_synced_commit":"17fb223e072335e7f22b4c2e15fe20fbfb7bceee"},"previous_names":["romaletodiani/dsa","romaletodiani/dsa-data-structures-algorithms"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RomaLetodiani/DSA","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RomaLetodiani%2FDSA","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RomaLetodiani%2FDSA/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RomaLetodiani%2FDSA/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RomaLetodiani%2FDSA/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RomaLetodiani","download_url":"https://codeload.github.com/RomaLetodiani/DSA/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RomaLetodiani%2FDSA/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28495192,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T04:31:57.058Z","status":"ssl_error","status_checked_at":"2026-01-17T04:31:45.816Z","response_time":85,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["algorithms","csharp","data-structures","javascript","python","typescript"],"created_at":"2026-01-17T04:34:32.525Z","updated_at":"2026-01-17T04:34:33.343Z","avatar_url":"https://github.com/RomaLetodiani.png","language":"Python","readme":"# Data Structures \u0026 Algorithms\n\nThis repository contains implementations and explanations of various data structures and algorithms commonly used in computer science and software development.\n\n## Table of Contents\n\n- [Data Structures \\\u0026 Algorithms](#data-structures--algorithms)\n  - [Table of Contents](#table-of-contents)\n  - [Introduction](#introduction)\n  - [Contributing](#contributing)\n  - [License](#license)\n\n## Introduction\n\nThis repository serves as a collection of well-documented implementations of essential data structures and algorithms.\nUnderstanding these fundamental concepts is crucial for writing efficient and optimized code in various programming languages.\n\n\u003cdetails\u003e \n  \u003csummary\u003e\u003ch2\u003eData Structures\u003c/h2\u003e\u003c/summary\u003e\n  \u003cul\u003e\n    \u003cli\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003ch3\u003eStrings\u003c/h3\u003e\u003c/summary\u003e\n        \u003cul\u003e\n          \u003cli\u003e\u003ca href=\"PYTHON/Data%20Structures/1.%20strings.py\"\u003ePython\u003c/a\u003e\u003c/li\u003e\n          \u003cli\u003e\u003ca href=\"JAVASCRIPT/Data%20Structures/1.%20Strings.js\"\u003eJavaScript\u003c/a\u003e\u003c/li\u003e\n          \u003cli\u003e\u003ca href=\"TYPESCRIPT/Data%20Structures/1.%20Strings.ts\"\u003eTypeScript\u003c/a\u003e\u003c/li\u003e\n        \u003c/ul\u003e\n      \u003c/details\u003e\n    \u003c/li\u003e\n    \u003cli\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003ch3\u003eLists / Arrays\u003c/h3\u003e\u003c/summary\u003e\n        \u003cul\u003e\n          \u003cli\u003e\u003ca href=\"PYTHON/Data%20Structures/2.%20lists.py\"\u003ePython\u003c/a\u003e\u003c/li\u003e\n          \u003cli\u003e\u003ca href=\"JAVASCRIPT/Data%20Structures/2.%20Arrays.js\"\u003eJavaScript\u003c/a\u003e\u003c/li\u003e\n          \u003cli\u003e\u003ca href=\"TYPESCRIPT/Data%20Structures/2.%20Arrays.ts\"\u003eTypeScript\u003c/a\u003e\u003c/li\u003e\n        \u003c/ul\u003e\n      \u003c/details\u003e\n    \u003c/li\u003e\n    \u003cli\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003ch3\u003eSets\u003c/h3\u003e\u003c/summary\u003e\n        \u003cul\u003e\n          \u003cli\u003e\u003ca href=\"PYTHON/Data%20Structures/3.%20sets.py\"\u003ePython\u003c/a\u003e\u003c/li\u003e\n          \u003cli\u003e\u003ca href=\"JAVASCRIPT/Data%20Structures/3.%20Sets.js\"\u003eJavaScript\u003c/a\u003e\u003c/li\u003e\n          \u003cli\u003e\u003ca href=\"TYPESCRIPT/Data%20Structures/1.%20Sets.ts\"\u003eTypeScript\u003c/a\u003e\u003c/li\u003e\n        \u003c/ul\u003e\n      \u003c/details\u003e\n    \u003c/li\u003e\n    \u003cli\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003ch3\u003eDictionaries/Objects\u003c/h3\u003e\u003c/summary\u003e\n        \u003cul\u003e\n          \u003cli\u003e\u003ca href=\"PYTHON/Data%20Structures/4.%20dicts.py\"\u003ePython\u003c/a\u003e\u003c/li\u003e\n          \u003cli\u003e\u003ca href=\"JAVASCRIPT/Data%20Structures/4.%20Objects.js\"\u003eJavaScript\u003c/a\u003e\u003c/li\u003e\n          \u003cli\u003e\u003ca href=\"TYPESCRIPT/Data%20Structures/4.%20Objects.ts\"\u003eTypeScript\u003c/a\u003e\u003c/li\u003e\n        \u003c/ul\u003e\n      \u003c/details\u003e\n    \u003c/li\u003e\n    \u003cli\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003ch3\u003eStack\u003c/h3\u003e\u003c/summary\u003e\n        \u003cul\u003e\n          \u003cli\u003e\u003ca href=\"PYTHON/Data%20Structures/5.%20stack.py\"\u003ePython\u003c/a\u003e\u003c/li\u003e\n          \u003cli\u003e\u003ca href=\"JAVASCRIPT/Data%20Structures/5.%20stack.js\"\u003eJavascript\u003c/a\u003e\u003c/li\u003e\n          \u003cli\u003e\u003ca href=\"TYPESCRIPT/Data%20Structures/5.%20Stack.ts\"\u003eTypeScript\u003c/a\u003e\u003c/li\u003e\n        \u003c/ul\u003e\n      \u003c/details\u003e\n    \u003c/li\u003e\n    \u003cli\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003ch3\u003eMatrix\u003c/h3\u003e\u003c/summary\u003e\n        \u003cul\u003e\n          \u003cli\u003e\u003ca href=\"PYTHON/Data%20Structures/6.%20matrix.py\"\u003ePython\u003c/a\u003e\u003c/li\u003e\n        \u003c/ul\u003e\n      \u003c/details\u003e\n    \u003c/li\u003e\n    \u003cli\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003ch3\u003eLinked List\u003c/h3\u003e\u003c/summary\u003e\n        \u003cul\u003e\n          \u003cli\u003e\u003ca href=\"PYTHON/Data%20Structures/7.%20linked_list.py\"\u003ePython\u003c/a\u003e\u003c/li\u003e\n        \u003c/ul\u003e\n      \u003c/details\u003e\n    \u003c/li\u003e\n    \u003cli\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003ch3\u003eQueue\u003c/h3\u003e\u003c/summary\u003e\n        \u003cul\u003e\n          \u003cli\u003e\u003ca href=\"PYTHON/Data%20Structures/9.%20queue.py\"\u003ePython\u003c/a\u003e\u003c/li\u003e\n        \u003c/ul\u003e\n      \u003c/details\u003e\n    \u003c/li\u003e\n    \u003cli\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003ch3\u003eDoubly Linked List\u003c/h3\u003e\u003c/summary\u003e\n        \u003cul\u003e\n          \u003cli\u003e\u003ca href=\"PYTHON/Data%20Structures/13.%20doubly_linked_list.py\"\u003ePython\u003c/a\u003e\u003c/li\u003e\n        \u003c/ul\u003e\n      \u003c/details\u003e\n    \u003c/li\u003e\n    \u003cli\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003ch3\u003eBinary Tree\u003c/h3\u003e\u003c/summary\u003e\n        \u003cul\u003e\n          \u003cli\u003e\u003ca href=\"PYTHON/Data%20Structures/15.%20binary_tree.py\"\u003ePython\u003c/a\u003e\u003c/li\u003e\n        \u003c/ul\u003e\n      \u003c/details\u003e\n    \u003c/li\u003e\n    \u003cli\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003ch3\u003eBinary Search Tree\u003c/h3\u003e\u003c/summary\u003e\n        \u003cul\u003e\n          \u003cli\u003e\u003ca href=\"PYTHON/Data%20Structures/16.%20binary_search_tree.py\"\u003ePython\u003c/a\u003e\u003c/li\u003e\n        \u003c/ul\u003e\n      \u003c/details\u003e\n    \u003c/li\u003e\n    \u003cli\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003ch3\u003eTrie\u003c/h3\u003e\u003c/summary\u003e\n        \u003cul\u003e\n          \u003cli\u003e\u003ca href=\"PYTHON/Data%20Structures/17.%20Trie.py\"\u003ePython\u003c/a\u003e\u003c/li\u003e\n        \u003c/ul\u003e\n      \u003c/details\u003e\n    \u003c/li\u003e\n    \u003cli\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003ch3\u003eGraph\u003c/h3\u003e\u003c/summary\u003e\n        \u003cul\u003e\n          \u003cli\u003e\u003ca href=\"PYTHON/Data%20Structures/18.%20graphs.py\"\u003ePython\u003c/a\u003e\u003c/li\u003e\n        \u003c/ul\u003e\n      \u003c/details\u003e\n    \u003c/li\u003e\n    \u003cli\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003ch3\u003eHeap\u003c/h3\u003e\u003c/summary\u003e\n        \u003cul\u003e\n          \u003cli\u003e\u003ca href=\"PYTHON/Data%20Structures/19.%20Heap.py\"\u003ePython\u003c/a\u003e\u003c/li\u003e\n        \u003c/ul\u003e\n      \u003c/details\u003e\n    \u003c/li\u003e\n  \u003c/ul\u003e\n\u003c/details\u003e\n\n\u003cdetails\u003e\n  \u003csummary\u003e\u003ch2\u003eAlgorithms\u003c/h2\u003e\u003c/summary\u003e\n  \u003cul\u003e\n    \u003cli\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003ch3\u003eSort Algorithms\u003c/h3\u003e\u003c/summary\u003e\n        \u003cul\u003e\n          \u003cli\u003e\u003ca href=\"PYTHON/Algorithms/Sort/\"\u003ePython\u003c/a\u003e\u003c/li\u003e\n          \u003cli\u003e\u003ca href=\"JAVASCRIPT/Algorithms/Sort/\"\u003eJavascript\u003c/a\u003e\u003c/li\u003e\n          \u003cli\u003e\u003ca href=\"TYPESCRIPT/Algorithms/Search/\"\u003eJavascript\u003c/a\u003e\u003c/li\u003e\n        \u003c/ul\u003e\n      \u003c/details\u003e\n    \u003c/li\u003e\n    \u003cli\u003e\n      \u003cdetails\u003e\n        \u003csummary\u003e\u003ch3\u003eSearch Algorithms\u003c/h3\u003e\u003c/summary\u003e\n        \u003cul\u003e\n          \u003cli\u003e\u003ca href=\"PYTHON/Algorithms/Search/\"\u003ePython\u003c/a\u003e\u003c/li\u003e\n          \u003cli\u003e\u003ca href=\"JAVASCRIPT/Algorithms/Search/\"\u003eJavaScript\u003c/a\u003e\u003c/li\u003e\n          \u003cli\u003e\u003ca href=\"TYPESCRIPT/Algorithms/Search/\"\u003eTypeScript\u003c/a\u003e\u003c/li\u003e\n        \u003c/ul\u003e\n      \u003c/details\u003e\n    \u003c/li\u003e\n  \u003c/ul\u003e\n\u003c/details\u003e\n\n## Contributing\n\nContributions are welcome! If you'd like to contribute by adding new implementations, improving existing ones, or suggesting enhancements, please follow the guidelines outlined in [CONTRIBUTING](CONTRIBUTING.md).\n\n## License\n\nThis repository is licensed under the [MIT License](LICENSE).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fromaletodiani%2Fdsa","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fromaletodiani%2Fdsa","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fromaletodiani%2Fdsa/lists"}