https://github.com/4cecoder/gdatatype
Golang Data Type & Examples
https://github.com/4cecoder/gdatatype
data-structures data-types-and-structures datatypes go
Last synced: 4 months ago
JSON representation
Golang Data Type & Examples
- Host: GitHub
- URL: https://github.com/4cecoder/gdatatype
- Owner: 4cecoder
- License: mit
- Created: 2021-09-07T19:11:52.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-26T01:11:02.000Z (about 3 years ago)
- Last Synced: 2025-01-05T16:29:35.986Z (6 months ago)
- Topics: data-structures, data-types-and-structures, datatypes, go
- Language: Go
- Homepage:
- Size: 56.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go Data Types
[Primitive Types Reference](https://devhints.io/go)
### Data Structure Catagories
| Linear | Non-Linear | Homogeneous | Heterogeneous | Dynamic |
| ------------- | ------------- | ------------- | ------------- | ------------- |
| [Lists](docs/linear/lists.md) | [Trees](docs/nonlinear/trees.md) |[2D Arrays](docs/homogeneous/2darrays.md) |[Linked Lists](docs/heterogeneous/linkedlists.md) | [Dictionaries](docs/dynamic/dictionaries.md) |
| [Sets](docs/linear/sets.md) | [Tables](docs/nonlinear/tables.md) | [MultiD Arrays](docs/homogeneous/multidarrays.md) | [Ordered Lists](docs/heterogeneous/orderedlists.md) | [Tree Sets](docs/dynamic/treesets.md) |
| [Tuples](docs/linear/tuples.md) | [Containers](docs/nonlinear/containers.md) | | [Unordered Lists](docs/heterogeneous/unorderedlists.md) | [Sequences](docs/dynamic/sequences.md) |
| [Queues](docs/linear/queues.md) | | | | |
| [Stacks](docs/linear/stacks.md) | | | | |
| [Heaps](docs/linear/heaps.md) | | | | |