{"id":16010426,"url":"https://github.com/shivajivarma/codebase","last_synced_at":"2026-02-15T03:02:21.084Z","repository":{"id":6686563,"uuid":"7931633","full_name":"shivajivarma/codebase","owner":"shivajivarma","description":"Collection of algorithms","archived":false,"fork":false,"pushed_at":"2019-03-21T06:46:19.000Z","size":166,"stargazers_count":1,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-14T01:26:46.553Z","etag":null,"topics":["algorithms","computer-science","data-structures","graph","search-algorithms","sorting-algorithms","tree"],"latest_commit_sha":null,"homepage":"https://shivajivarma.com/project/code-base/","language":"Java","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/shivajivarma.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}},"created_at":"2013-01-31T06:31:26.000Z","updated_at":"2019-08-22T01:56:08.000Z","dependencies_parsed_at":"2022-08-20T17:20:37.756Z","dependency_job_id":null,"html_url":"https://github.com/shivajivarma/codebase","commit_stats":null,"previous_names":["shivajivarma/code-base"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/shivajivarma/codebase","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shivajivarma%2Fcodebase","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shivajivarma%2Fcodebase/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shivajivarma%2Fcodebase/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shivajivarma%2Fcodebase/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shivajivarma","download_url":"https://codeload.github.com/shivajivarma/codebase/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shivajivarma%2Fcodebase/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29466925,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T01:01:38.065Z","status":"online","status_checked_at":"2026-02-15T02:00:07.449Z","response_time":118,"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","computer-science","data-structures","graph","search-algorithms","sorting-algorithms","tree"],"created_at":"2024-10-08T13:05:45.619Z","updated_at":"2026-02-15T03:02:21.068Z","avatar_url":"https://github.com/shivajivarma.png","language":"Java","readme":"Code Base\n===========\n\n'__[Code Base](http://shivajivarma.com/project/code-base/)__' is a repository contains examples of many popular algorithms and data structures. \n\n## Data Structures\n\nData structure is a particular way of organizing and storing data in a computer so that it can be accessed and modified efficiently. More precisely, a data structure is a collection of data values, the relationships among them, and the functions or operations that can be applied to the data.\n\n* Linked Lists\n    * [Singly Linked List](http://shivajivarma.com/project/code-base/2018/05/27/singly-linked-list)\n* [Stack](http://shivajivarma.com/project/code-base/2018/06/01/stack/)\n\n## Algorithms\n\nAlgorithm is an unambiguous specification of how to solve a class of problems. Algorithm is a set of rules that precisely defines a sequence of operations.\n\n### Algorithms by Topic\n\n* **Date**\n\t* [Leap Year](http://shivajivarma.com/project/code-base/2017/07/08/leap-year/)\n* **Math**\n\t* [Armstrong Number](http://shivajivarma.com/project/code-base/2014/12/28/armstrong-number/)\n\t* [Greatest Common Divisor of two numbers](http://shivajivarma.com/project/code-base/2015/01/03/greatest-common-divisor/)\n* **Search**\n\t* [Binary Search](http://shivajivarma.com/project/code-base/2015/01/05/binary-search/)\n\t* [Linear Search](http://shivajivarma.com/project/code-base/2015/01/05/linear-search/)\n* **Sorting**\n\t* [Bubble Sort](http://shivajivarma.com/project/code-base/2014/12/28/bubble-sort/)\n\t* [Insertion Sort](http://shivajivarma.com/project/code-base/2014/12/28/insertion-sort/)\n\t* [Merge Sort](http://shivajivarma.com/project/code-base/2015/01/02/merge-sort/)\n\t* [Quick Sort](http://shivajivarma.com/project/code-base/2015/01/02/quick-sort/)\n\t* [Selection Sort](http://shivajivarma.com/project/code-base/2015/01/02/selection-sort/)\n* **String**\n\t* [Anagram](http://shivajivarma.com/project/code-base/2014/12/28/anagram/)\n\t* [Longest Palindrome Sub String Length](http://shivajivarma.com/project/code-base/2014/12/30/longest-palindrome-substring-length/)\n\t* [Palindrome String](http://shivajivarma.com/project/code-base/2018/05/27/palindrome)\n\t* [Reversing A String](http://shivajivarma.com/project/code-base/2018/05/27/reversing-a-string)\n* **Networking**\n\t* [Sockets (Server - Client Communication)](http://shivajivarma.com/project/code-base/2017/10/23/sockets-server-client-communication/)\n\t\n\t\n\t\n* **Others**\n\t* Display Patterns\n\t\t* [Right Angled Triangle](http://shivajivarma.com/project/code-base/2017/10/23/display-patterns)\n\t\t* [Print Z](http://shivajivarma.com/project/code-base/2017/10/23/display-patterns)\n\t* [Permutations](http://shivajivarma.com/project/code-base/2017/10/22/permutations/)\n\t* Random Number ([C](https://github.com/shivajivarma/codebase-c/blob/master/src/random-number/random-number.c))\n\t* [Subsets](https://shivajivarma.com/project/code-base/2018/05/10/subsets/)\n\t* [Towers Of Hanoi](http://shivajivarma.com/project/code-base/2017/10/23/towers-of-hanoi/)\n\t* Spiral Matrix ([Java](https://github.com/shivajivarma/codebase-java/blob/master/src/main/java/com/shivajivarma/codebase/spiral_matrix/SpiralMatrix.java))\n\nand more...\n\nContribute\n==========\nDid you find a bug? any way to do it better? please feel free to pull-request it (or) drop a mail at **contact@shivajivarma.com** :)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshivajivarma%2Fcodebase","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshivajivarma%2Fcodebase","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshivajivarma%2Fcodebase/lists"}