{"id":26157235,"url":"https://github.com/maverickpoly/asmr-c-dsa","last_synced_at":"2026-04-18T16:34:28.388Z","repository":{"id":273743001,"uuid":"919481928","full_name":"MaverickPoly/asmr-c-dsa","owner":"MaverickPoly","description":"Different Data Structures and Algorithms implemented purely in C","archived":false,"fork":false,"pushed_at":"2025-01-22T17:26:04.000Z","size":40,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-11T09:58:32.932Z","etag":null,"topics":["algorithms","c","data-structures"],"latest_commit_sha":null,"homepage":"","language":"C","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/MaverickPoly.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":"2025-01-20T13:23:24.000Z","updated_at":"2025-03-03T12:01:58.000Z","dependencies_parsed_at":"2025-01-22T18:39:50.710Z","dependency_job_id":null,"html_url":"https://github.com/MaverickPoly/asmr-c-dsa","commit_stats":null,"previous_names":["maverickpoly/asmr-c-dsa"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MaverickPoly/asmr-c-dsa","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaverickPoly%2Fasmr-c-dsa","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaverickPoly%2Fasmr-c-dsa/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaverickPoly%2Fasmr-c-dsa/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaverickPoly%2Fasmr-c-dsa/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MaverickPoly","download_url":"https://codeload.github.com/MaverickPoly/asmr-c-dsa/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaverickPoly%2Fasmr-c-dsa/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31976596,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T16:27:12.723Z","status":"ssl_error","status_checked_at":"2026-04-18T16:27:11.140Z","response_time":103,"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":["algorithms","c","data-structures"],"created_at":"2025-03-11T09:58:35.162Z","updated_at":"2026-04-18T16:34:28.348Z","avatar_url":"https://github.com/MaverickPoly.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ASMR C DSA: Data Structures and Algorithms\n\nA comprehensive repository for Data Structures and Algorithms (DSA) implemented purely in **C**. This project contains efficient implementations of popular data structures and algorithms, designed for beginners and enthusiasts to learn and practice the art of problem-solving in C.\n\n## 🚀 Features\n\n### **Data Structures**\n\n- **Linked List**: Singly Linked List.\n- **Bool**: Boolean enum, and converting other data types to boolean.\n- **Dict (dictionary)**: Inspired by Python's **dict** data type.\n- **HashMap**: Dynamic Key-Value pairs with hashing.\n- **String**: Dynamic String, like in Python.\n- **Set**: Dynamic collection with unique values.\n- **Queue**: FIFO (First In First Out).\n- **Stack**: LIFO (Last In First Out).\n- **Dynamic Array**: Dynamic array similar to **list** in Python and **vector** in C++.\n\n### **Algorithms**\n\n#### **Mathematical Algorithms**\n\n- Prime Number.\n- GCD and LCM.\n- Fibonacci Sequence.\n- Factorial.\n- Mean, Sum, Max, Min.\n\n#### **Searching Algorithms**\n\n- Linear Search.\n- Binary Search.\n\n#### **Sorting Algorithms**\n\n- Bubble Sort.\n- Merge Sort.\n- Quick Sort.\n- Selection Sort.\n- Insertion Sort.\n\n---\n\n## 📂 Repository Structure\n\n```plaintext\nasmr-c-dsa/\n│\n├── LinkedList/\n├── HashMap/\n├── Bool/\n├── Dict/\n├── DynamicArray/\n├── LinkedList/\n├── Queue/\n├── Set/\n├── Stack/\n├── String/\n├── Algorithms/\n│   ├── Math/\n│   ├── Searching/\n│   ├── Sorting/\n└── README.md\n```\n\n---\n\n## 📖 How to Use\n\n### Prerequisites\n\n- **C Compiler**: Make sure you have GCC or any other standard C compiler installed.\n\n### Clone the Repository\n\n```bash\ngit clone https://github.com/MaverickPoly/asmr-c-dsa.git\ncd asmr-c-dsa\n```\n\n### Compile and Run\n\nCompile any file using GCC:\n\n```bash\ncd LinkedList \u0026\u0026 gcc tests.c linked_list.c -o main.exe \u0026\u0026 main.exe\n```\n\n---\n\n## 🛠️ Future Plans\n\nIn the future, other complex data structures will be added, like _Trees_ and _Graphs_, along with algorithms, such as Dijkstra's, Kruskal's, and Prim's.\n\n---\n\n## 🙌 Contributions\n\nContributions are always welcome!\n\n1. Fork the repository.\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`).\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`).\n4. Push to the branch (`git push origin feature/AmazingFeature`).\n5. Open a pull request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaverickpoly%2Fasmr-c-dsa","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaverickpoly%2Fasmr-c-dsa","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaverickpoly%2Fasmr-c-dsa/lists"}