{"id":24064714,"url":"https://github.com/jeninsutradhar/java-datastructures-algorithms","last_synced_at":"2025-02-26T18:14:59.143Z","repository":{"id":232419813,"uuid":"784314809","full_name":"JeninSutradhar/JAVA-DataStructures-Algorithms","owner":"JeninSutradhar","description":"This repository contains implementations of various data structures and algorithms in different programming languages. It serves as a reference and learning resource for understanding fundamental concepts in computer science.","archived":false,"fork":false,"pushed_at":"2024-04-13T14:23:13.000Z","size":177,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-04-14T04:42:46.583Z","etag":null,"topics":["algorithms","algorithms-and-data-structures","data-structures","java","jdk21"],"latest_commit_sha":null,"homepage":"","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/JeninSutradhar.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":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2024-04-09T15:55:07.000Z","updated_at":"2024-04-15T15:49:13.402Z","dependencies_parsed_at":"2024-04-15T15:49:10.902Z","dependency_job_id":null,"html_url":"https://github.com/JeninSutradhar/JAVA-DataStructures-Algorithms","commit_stats":null,"previous_names":["jeninsutradhar/javaalgorithms","jeninsutradhar/java-datastructures-algorithms"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JeninSutradhar%2FJAVA-DataStructures-Algorithms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JeninSutradhar%2FJAVA-DataStructures-Algorithms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JeninSutradhar%2FJAVA-DataStructures-Algorithms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JeninSutradhar%2FJAVA-DataStructures-Algorithms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JeninSutradhar","download_url":"https://codeload.github.com/JeninSutradhar/JAVA-DataStructures-Algorithms/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240907852,"owners_count":19876691,"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","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","algorithms-and-data-structures","data-structures","java","jdk21"],"created_at":"2025-01-09T10:39:51.853Z","updated_at":"2025-02-26T18:14:59.113Z","avatar_url":"https://github.com/JeninSutradhar.png","language":"Java","readme":"# Data Structures and Algorithms\n\nThis repository contains implementations of various data structures and algorithms in different programming languages. It serves as a reference and learning resource for understanding fundamental concepts in computer science.\n\n![GitHub repo size](https://img.shields.io/github/repo-size/JeninSutradhar/JAVA-DataStructures-Algorithms)\n## Contents\n\n1. [Introduction](#introduction)\n2. [Data Structures](#data-structures)\n3. [Algorithms](#algorithms)\n4. [Contributing](#contributing)\n5. [License](#license)\n6. [Project Structure](#project-structure)\n## Introduction\n\nUnderstanding data structures and algorithms is essential for every software engineer and computer scientist. This repository aims to provide implementations of commonly used data structures and algorithms in a variety of programming languages, along with explanations and examples.\n\n## Data Structures\n\nThe following data structures are implemented in this repository:\n\n- Linked List\n- Stack\n- Queue\n- Binary Tree\n- Binary Search Tree\n- Graph\n- Hash Table\n- Heap\n- Trees\n- ...\n\nEach data structure is organized into its own directory and includes the implementation code, along with explanations and examples of usage.\n\n## Algorithms\n\nThe following algorithms are implemented in this repository:\n\n- Sorting Algorithms (Bubble Sort, Insertion Sort, Merge Sort, Quick Sort, etc.)\n- Searching Algorithms (Linear Search, Binary Search, Depth-First Search, Breadth-First Search, etc.)\n- Dynamic Programming Algorithms\n- Graph Algorithms (Dijkstra's Algorithm, Prim's Algorithm, Kruskal's Algorithm, etc.)\n- String Algorithms (String Matching, String Parsing, etc.)\n- ...\n\n\n## Project Structure \n```bash\n.\n├── Algorithms\n│   ├── Searching\n│   │   ├── BinarySearch.java\n│   │   ├── BreadthFirstSearch\n│   │   │   ├── Graph.java\n│   │   │   ├── Main.java\n│   │   │   └── Node.java\n│   │   ├── DepthFirstSearch\n│   │   │   ├── Graph.java\n│   │   │   ├── Main.java\n│   │   │   └── Node.java\n│   │   ├── InterpolationSearch.java\n│   │   ├── LinearSearch.java\n│   │   └── SimpleBinarySearch.java\n│   └── Sorting\n│       ├── BubbleSort.java\n│       ├── HeapSort.java\n│       ├── InsertionSort.java\n│       ├── MergeSort.java\n│       ├── PigeonholeSort.java\n│       ├── QuickSort.java\n│       ├── Recursion.java\n│       ├── SelectionSort.java\n│       └── TournamentSort.java\n├── DataStructures\n│   ├── DynamicArray.java\n│   ├── Graph\n│   │   ├── AdjecencyList\n│   │   │   ├── Graph.java\n│   │   │   ├── Main.java\n│   │   │   └── Node.java\n│   │   └── AdjecencyMatrix\n│   │       ├── Graph.java\n│   │       ├── Main.java\n│   │       └── Node.java\n│   ├── LinkedLists.java\n│   ├── PriorityQueues.java\n│   ├── Queues.java\n│   ├── Stacks.java\n│   ├── Trees\n│   │   └── BinarySearchTree\n│   │       ├── Main.java\n│   │       ├── Node.java\n│   │       └── binarySearchTree.java\n│   └── hashtable.java\n├── LICENSE\n├── Misc\n│   ├── LinkedListMethod2.java\n│   ├── LinkedvsArrayList.java\n│   ├── PigeonholeSort.java\n│   └── TournamentSort.java\n├── README.md\n├── SECURITY.md\n└── TimeComplexity \u0026 Big(O)\n    ├── Complexity.java\n    └── cheatsheet.png\n```\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).\n\n\n## Contributing\n\nContributions are welcome! If you'd like to contribute to this repository, feel free to submit a pull request with your changes. Please ensure that your code follows the existing style and conventions, and include appropriate documentation and test cases.\n\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeninsutradhar%2Fjava-datastructures-algorithms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjeninsutradhar%2Fjava-datastructures-algorithms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeninsutradhar%2Fjava-datastructures-algorithms/lists"}