{"id":23002594,"url":"https://github.com/raj-rathod/dsa-questions","last_synced_at":"2025-08-14T01:31:24.108Z","repository":{"id":50619261,"uuid":"519644435","full_name":"raj-rathod/DSA-questions","owner":"raj-rathod","description":"This package is developed for functionality of data structures and algorithms, some standard examples of algorithms are implemented","archived":false,"fork":false,"pushed_at":"2023-02-02T00:05:16.000Z","size":503,"stargazers_count":10,"open_issues_count":0,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-08-08T21:26:04.193Z","etag":null,"topics":["algorithms","data-structures","data-structures-and-algorithms","dsa-learning-series","dsa-practice","dsa-project","dsa-questions","faang-interview","faang-preparation","faang-questions","leetcode","npm-package","placement-preparation","rajesh-rathore"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/@raj-rathod/dsa-methods","language":"TypeScript","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/raj-rathod.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.MD","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-07-31T00:03:48.000Z","updated_at":"2024-09-21T00:29:24.000Z","dependencies_parsed_at":"2023-01-21T10:31:32.724Z","dependency_job_id":null,"html_url":"https://github.com/raj-rathod/DSA-questions","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/raj-rathod/DSA-questions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raj-rathod%2FDSA-questions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raj-rathod%2FDSA-questions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raj-rathod%2FDSA-questions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raj-rathod%2FDSA-questions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raj-rathod","download_url":"https://codeload.github.com/raj-rathod/DSA-questions/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raj-rathod%2FDSA-questions/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270347431,"owners_count":24568569,"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","status":"online","status_checked_at":"2025-08-13T02:00:09.904Z","response_time":66,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","data-structures","data-structures-and-algorithms","dsa-learning-series","dsa-practice","dsa-project","dsa-questions","faang-interview","faang-preparation","faang-questions","leetcode","npm-package","placement-preparation","rajesh-rathore"],"created_at":"2024-12-15T07:11:38.724Z","updated_at":"2025-08-14T01:31:23.804Z","avatar_url":"https://github.com/raj-rathod.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![GitHub Repo stars](https://img.shields.io/github/stars/raj-rathod/DSA-questions?style=social)\n![GitHub forks](https://img.shields.io/github/forks/raj-rathod/DSA-questions?style=social)\n![GitHub watchers](https://img.shields.io/github/watchers/raj-rathod/DSA-questions?style=social)\n![GitHub contributors](https://img.shields.io/github/contributors/raj-rathod/DSA-questions)\n![GitHub issues](https://img.shields.io/github/issues-raw/raj-rathod/DSA-questions)\n![npm](https://img.shields.io/npm/dm/@raj-rathod/dsa-methods)\n\n# Data structures and algorithms methods\n\u003e This package is developed for functionality of data structures\nand algorithms, some standard examples of algorithms are\nimplemented\n\n## [Publish](https://www.npmjs.com/package/@raj-rathod/dsa-methods)\n\n_If you like this project, please leave me a star._ \u0026#9733;\n\n## **Installation**\n\n````node\nnpm i @raj-rathod/dsa-methods\n````\n\nThen import it's module into your code:\n\n````typescript\n\nimport { SingleLinkedList } from '@raj-rathod/dsa-methods';\n\n````\n\nhow to use it in angular components:\n\n````typescript\nimport { SingleLinkedList } from '@raj-rathod/dsa-methods';\n\nexport class SingleLinkedListComponent implements OnInit {\n\n    singleLinkedList: SingleLinkedList;\n    \n    constructor() {\n      this.singleLinkedList = new SingleLinkedList();\n      this.singleLinkedList.createSingleLinkedList([1, 2, 3]);\n    }\n\n}\n````\n\n## Table of Contents\n\n- ### Data Structures\n  - **Linear Data Structures**\n    - Array\n    - Matrix\n    - Stack\n    - Queue\n    - Linked List\n  - **Non-linear Data Structures**\n    - Tree\n    - Graph\n    - Trie\n    - Hash Table\n- ### Algorithms\n  - **Sorting**\n    - Selection Sort\n    - Insertion Sort\n    - Merge Sort \n    - Quick Sort\n    - Counting Sort\n    - Radix Sort\n    - Bucket Sort\n    - Shell Sort\n    - Heap Sort\n  - **Searching**\n    - Linear Search\n    - Binary Search\n    - Jump Search\n    - Interpolation Search\n    - Exponential Search\n    - Fibonacci Search\n  - **Divide and Conquer**\n    - Merge Sort\n    - Quick Sort\n    - Strassen's Algorithm\n    - Closest Pair of Points\n    - Karatsuba Algorithm\n  - **Recursive**\n  - **Dynamic Programming**\n  - **Greedy**\n  - **Backtracking**\n  - **Hashing**\n  - **Randomized**\n\n## Contributing\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\nPlease read the [Contribute guide](.github/CONTRIBUTING.md)\n\n## Connect with me ~Rajesh Rathore\n\n[![Linkedin Badge](https://img.shields.io/badge/-LinkedIn-0e76a8?style=flat-square\u0026logo=Linkedin\u0026logoColor=white)](https://www.linkedin.com/in/rajesh-rathore-0501/)\n[![Website Badge](https://img.shields.io/badge/Website-3b5998?style=flat-square\u0026logo=google-chrome\u0026logoColor=white)](https://linktr.ee/rajesh_rathore)\n[![Twitter Badge](https://img.shields.io/badge/-Twitter-00acee?style=flat-square\u0026logo=Twitter\u0026logoColor=white)](https://twitter.com/Rajesh946055)\n[![Instagram Badge](https://img.shields.io/badge/-Instagram-e4405f?style=flat-square\u0026logo=Instagram\u0026logoColor=white)](https://www.instagram.com/raj_rathod1313/?hl=en)\n\n\n***Do star, fork and share the repo to show your support, it would help others too!***   \u003cbr\u003e\n \u003cbr\u003e\n Let me know your views or any changes or improvements or contribute to make better for others \n \n :heart: ***Thank you all for Forking this repository and contribute***  :heart:\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraj-rathod%2Fdsa-questions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraj-rathod%2Fdsa-questions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraj-rathod%2Fdsa-questions/lists"}