{"id":22213560,"url":"https://github.com/albinj12/go-data-structures-and-algorithms","last_synced_at":"2025-03-25T06:22:16.472Z","repository":{"id":46094266,"uuid":"374013929","full_name":"albinj12/Go-Data-Structures-and-Algorithms","owner":"albinj12","description":"Data Structures and Algorithms implemented using Go","archived":false,"fork":false,"pushed_at":"2022-08-03T16:40:58.000Z","size":57,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-30T05:42:39.322Z","etag":null,"topics":["algorithms","data-structures","dsa","go","golang"],"latest_commit_sha":null,"homepage":"","language":"Go","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/albinj12.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}},"created_at":"2021-06-05T03:47:42.000Z","updated_at":"2022-07-19T18:24:47.000Z","dependencies_parsed_at":"2022-07-19T01:17:05.528Z","dependency_job_id":null,"html_url":"https://github.com/albinj12/Go-Data-Structures-and-Algorithms","commit_stats":null,"previous_names":["albinj12/golang-data-structures-and-algorithms","albinj12/go-data-structures"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albinj12%2FGo-Data-Structures-and-Algorithms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albinj12%2FGo-Data-Structures-and-Algorithms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albinj12%2FGo-Data-Structures-and-Algorithms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albinj12%2FGo-Data-Structures-and-Algorithms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/albinj12","download_url":"https://codeload.github.com/albinj12/Go-Data-Structures-and-Algorithms/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245408920,"owners_count":20610420,"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","data-structures","dsa","go","golang"],"created_at":"2024-12-02T21:10:08.107Z","updated_at":"2025-03-25T06:22:16.442Z","avatar_url":"https://github.com/albinj12.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Go-Data-Structures\nThis repo contains all the Data Structures implemented using Golang\n\n## Data Structures\n1. [Stack](https://github.com/albinj12/Go-Data-Structures/tree/main/Data%20Structures/stack)\n   - [Stack using array](https://github.com/albinj12/Go-Data-Structures/blob/main/Data%20Structures/stack/main.go)\n   - [Stack using Linked list](https://github.com/albinj12/Go-Data-Structures/blob/main/Data%20Structures/stack/stack_linked_list.go)\n2. [Queue](https://github.com/albinj12/Go-Data-Structures/tree/main/Data%20Structures/Queue)\n   - [Simple Queue](https://github.com/albinj12/Go-Data-Structures/blob/main/Data%20Structures/Queue/queue.go)\n   - [Circular Queue](https://github.com/albinj12/Go-Data-Structures/blob/main/Data%20Structures/Queue/circular_queue.go)\n   - [Queue using Linked list](https://github.com/albinj12/Go-Data-Structures/blob/main/Data%20Structures/Queue/queue_linked_list.go)\n   - [Circular Queue using Linked list](https://github.com/albinj12/Go-Data-Structures/blob/main/Data%20Structures/Queue/circular_queue_linked_list.go)\n   - [Prioriy Queue using linked list](https://github.com/albinj12/Go-Data-Structures/blob/main/Data%20Structures/Queue/priority_queue_linked_list.go)\n3. [Linked List](https://github.com/albinj12/Go-Data-Structures/tree/main/Data%20Structures/Linked%20List)\n   - [Single Linked List](https://github.com/albinj12/Go-Data-Structures/blob/main/Data%20Structures/Linked%20List/linked_list.go)\n   - [Double Linked List](https://github.com/albinj12/Go-Data-Structures/blob/main/Data%20Structures/Linked%20List/doubly_linked_list.go)\n   - [Circular Linked List](https://github.com/albinj12/Go-Data-Structures/blob/main/Data%20Structures/Linked%20List/circular_linked_list.go)\n   - [Circular Double Linked List](https://github.com/albinj12/Go-Data-Structures/blob/main/Data%20Structures/Linked%20List/circular_doubly_linked_list.go)\n4. [Tree](https://github.com/albinj12/Golang-Data-Structures-and-Algorithms/blob/main/Data%20Structures/Tree)\n   - [Binary Tree](https://github.com/albinj12/Go-Data-Structures-and-Algorithms/blob/main/Data%20Structures/Tree/binaryTree.go)\n   - [Binary Search Tree](https://github.com/albinj12/Golang-Data-Structures-and-Algorithms/blob/main/Data%20Structures/Tree/binartSearchTree.go)\n   - [AVL Tree](https://github.com/albinj12/Go-Data-Structures-and-Algorithms/blob/main/Data%20Structures/Tree/AVLTree.go)\n   - [Segment Tree](https://github.com/albinj12/Go-Data-Structures-and-Algorithms/blob/main/Data%20Structures/Tree/segmentTree.go)\n5. [Heap](https://github.com/albinj12/Golang-Data-Structures-and-Algorithms/blob/main/Data%20Structures/Heap)\n   - [Min Heap](https://github.com/albinj12/Go-Data-Structures-and-Algorithms/blob/main/Data%20Structures/Heap/minHeap.go)\n   - [Max Heap](https://github.com/albinj12/Golang-Data-Structures-and-Algorithms/blob/main/Data%20Structures/Heap/maxHeap.go)\n6. [Trie](https://github.com/albinj12/Golang-Data-Structures-and-Algorithms/blob/main/Data%20Structures/Trie)\n   - [Trie](https://github.com/albinj12/Golang-Data-Structures-and-Algorithms/blob/main/Data%20Structures/Trie/trie.go)\n7. [Graph](https://github.com/albinj12/Golang-Data-Structures-and-Algorithms/blob/main/Data%20Structures/Graph)\n   - [Graph](https://github.com/albinj12/Golang-Data-Structures-and-Algorithms/blob/main/Data%20Structures/Graph/graph.go)\n\n## Algorithms\n1. [Search](https://github.com/albinj12/Golang-Data-Structures-and-Algorithms/tree/main/Algorithms/Search)\n   - [Binary Search](https://github.com/albinj12/Golang-Data-Structures-and-Algorithms/tree/main/Algorithms/Search/Binary%20Search)\n      - [Iteration](https://github.com/albinj12/Golang-Data-Structures-and-Algorithms/blob/main/Algorithms/Search/Binary%20Search/binarySearch.go)\n      - [Recursion](https://github.com/albinj12/Golang-Data-Structures-and-Algorithms/blob/main/Algorithms/Search/Binary%20Search/binarySearchRecursion.go)\n2. [Sort](https://github.com/albinj12/Golang-Data-Structures-and-Algorithms/tree/main/Algorithms/Sort)\n   - [Bubble Sort](https://github.com/albinj12/Golang-Data-Structures-and-Algorithms/blob/main/Algorithms/Sort/bubbleSort.go)\n   - [Selection Sort](https://github.com/albinj12/Golang-Data-Structures-and-Algorithms/blob/main/Algorithms/Sort/selectionSort.go)\n   - [Insertion Sort](https://github.com/albinj12/Golang-Data-Structures-and-Algorithms/blob/main/Algorithms/Sort/insertionSort.go)\n   - [Merge Sort](https://github.com/albinj12/Golang-Data-Structures-and-Algorithms/blob/main/Algorithms/Sort/mergeSort.go)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falbinj12%2Fgo-data-structures-and-algorithms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falbinj12%2Fgo-data-structures-and-algorithms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falbinj12%2Fgo-data-structures-and-algorithms/lists"}