Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shnartho/go-dsa
Golang practice
https://github.com/shnartho/go-dsa
Last synced: about 6 hours ago
JSON representation
Golang practice
- Host: GitHub
- URL: https://github.com/shnartho/go-dsa
- Owner: shnartho
- Created: 2023-05-01T01:02:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-12T09:53:09.000Z (about 1 year ago)
- Last Synced: 2024-06-21T22:47:49.310Z (5 months ago)
- Language: Go
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Go Data Structures and Algorithms
Welcome to the Go Data Structures and Algorithms repository! This repository contains a comprehensive collection of essential data structures and classic algorithms, all implemented in the Go programming language. Our aim is to provide a valuable resource for those who want to learn, understand, and effectively utilize fundamental data structures and algorithms.
![golang](https://granulate.io/wp-content/uploads/2021/02/Golang-Performance.png)
## Table of Contents
- [Introduction](#introduction)
- [Data Structures](#data-structures)
- [Algorithms](#algorithms)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)## Introduction
This repository serves as a reference for well-documented code implementations of core data structures and algorithms. Each implementation comes with explanations, time and space complexity analysis, and practical examples.
## Data Structures
Explore the following data structures:
- Arrays
- Linked Lists
- Stacks
- Queues
- Hash Tables
- Heaps
- Binary Trees
- Graphs etc## Algorithms
Discover a variety of algorithms, including:
- Sorting Algorithms (QuickSort, MergeSort, etc.)
- Searching Algorithms (Binary Search, Depth-First Search, Breadth-First Search, etc.)
- Dynamic Programming
- Greedy Algorithms
- Graph Algorithms etc.