{"id":19327119,"url":"https://github.com/nishkarshraj/algorithms","last_synced_at":"2025-09-04T12:48:07.545Z","repository":{"id":99062707,"uuid":"192941496","full_name":"NishkarshRaj/Algorithms","owner":"NishkarshRaj","description":"Algorithms implemented in a platform and language independent manner.","archived":false,"fork":false,"pushed_at":"2023-12-15T02:47:25.000Z","size":85,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-24T06:26:01.346Z","etag":null,"topics":["algorithm","algorithm-challenges","algorithm-competitions","algorithms","algorithms-and-data-structures","algorithms-implemented","c","cpp","data-structures"],"latest_commit_sha":null,"homepage":null,"language":"C++","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/NishkarshRaj.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2019-06-20T15:08:45.000Z","updated_at":"2020-04-11T10:40:11.000Z","dependencies_parsed_at":"2023-12-15T03:41:00.818Z","dependency_job_id":"77b7900f-10d1-4633-86e9-ba60c9a27e55","html_url":"https://github.com/NishkarshRaj/Algorithms","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/NishkarshRaj/Algorithms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NishkarshRaj%2FAlgorithms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NishkarshRaj%2FAlgorithms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NishkarshRaj%2FAlgorithms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NishkarshRaj%2FAlgorithms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NishkarshRaj","download_url":"https://codeload.github.com/NishkarshRaj/Algorithms/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NishkarshRaj%2FAlgorithms/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273611886,"owners_count":25136977,"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-09-04T02:00:08.968Z","response_time":61,"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":["algorithm","algorithm-challenges","algorithm-competitions","algorithms","algorithms-and-data-structures","algorithms-implemented","c","cpp","data-structures"],"created_at":"2024-11-10T02:16:01.785Z","updated_at":"2025-09-04T12:48:07.483Z","avatar_url":"https://github.com/NishkarshRaj.png","language":"C++","readme":"# Algorithms\nAlgorithms implemented in a platform and language independent manner.\n\n## Searching Techniques\n\n[1) Linear Search](https://github.com/NishkarshRaj/Algorithms/blob/master/Searching/LinearSearch.cpp)\n\n[2) Binary Search](https://github.com/NishkarshRaj/Algorithms/blob/master/Searching/binarysearch.c)\n\n## Sorting Techniques\n\n### Quadratic Complexity Sorting\n\n[1) Selection Sort](https://github.com/NishkarshRaj/Algorithms/blob/master/Sorting/Quadratic%20Sorting/selection.cpp)\n\n[2) Bubble Sort](https://github.com/NishkarshRaj/Algorithms/blob/master/Sorting/Quadratic%20Sorting/bubble.cpp)\n\n[3) Insertion Sort](https://github.com/NishkarshRaj/Algorithms/blob/master/Sorting/Quadratic%20Sorting/insertion.cpp)\n\n### Divide And Conquer Techniques\n\n[1) Merge Sort](https://github.com/NishkarshRaj/Algorithms/blob/master/Sorting/Divide%20and%20Conquer%20Sorting/merge.cpp)\n\n[2) Quick Sort](https://github.com/NishkarshRaj/Algorithms/blob/master/Sorting/Divide%20and%20Conquer%20Sorting/quick.c)\n\n### Linear Sorting\n\n[1) Counting Sort For Digits 0-9](https://github.com/NishkarshRaj/Algorithms/blob/master/Sorting/Linear%20Sorting/CountingSortBasic.cpp)\n\n[2) General Counting Sort (better Space Complexity)](https://github.com/NishkarshRaj/Algorithms/blob/master/Sorting/Linear%20Sorting/CountingSortBasic.cpp)\n\n[3) General Counting Sort (better Time Complexity)](https://github.com/NishkarshRaj/Algorithms/blob/master/Sorting/Linear%20Sorting/CountingSortGeneral2.cpp)\n\n[4) Radix Sorting](https://github.com/NishkarshRaj/Algorithms/blob/master/Sorting/Linear%20Sorting/RadixSort.cpp)\n\n## Divide and Conquer\n\n[1) Strassen's Multiplication for 2x2 Matrix](https://github.com/NishkarshRaj/Algorithms/blob/master/Divide%20and%20Conquer/strassens.c)\n\n## Greedy Algorithms\n\n[1) Activity Selection](https://github.com/NishkarshRaj/Algorithms/blob/master/Greedy%20Approach/activityselection.c)\n\n[2) Fractional Knapsack](https://github.com/NishkarshRaj/Algorithms/blob/master/Greedy%20Approach/fractionalknapsack.c)\n\n[3) Interval Partitioning](https://github.com/NishkarshRaj/Algorithms/blob/master/Greedy%20Approach/intervalpartitioning.c)\n\n[4) Huffmann Coding](https://github.com/NishkarshRaj/Algorithms/blob/master/Greedy%20Approach/Huffmann.cpp)\n\n[5) Pre-emptive scheduling using Start Time](https://github.com/NishkarshRaj/Algorithms/blob/master/Greedy%20Approach/preemptivepriorityscheduling.c)\n\n[6) Pre-Emptive Scheduling with priority](https://github.com/NishkarshRaj/Algorithms/blob/master/Greedy%20Approach/PriorityPremptiveScheduling.cpp)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnishkarshraj%2Falgorithms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnishkarshraj%2Falgorithms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnishkarshraj%2Falgorithms/lists"}