https://github.com/augustodevjs/implementation-data-structures
https://github.com/augustodevjs/implementation-data-structures
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/augustodevjs/implementation-data-structures
- Owner: augustodevjs
- License: mit
- Created: 2024-06-22T16:02:00.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-10-05T14:48:59.000Z (8 months ago)
- Last Synced: 2025-01-02T11:44:17.845Z (5 months ago)
- Language: C#
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Data Structures in C#
This repository contains implementations of key data structures in C#. Each structure is implemented efficiently for educational and practical use.
## Implemented Data Structures
### Array
Arrays are collections of elements of the same type stored in contiguous memory locations. They allow for fast access to elements via indices.### Linked List
Linked lists are collections of elements called nodes, where each node contains a value and a reference to the next node in the sequence. They allow for efficient insertion and removal of elements.### Stack
Stacks are collections of elements that follow the LIFO (Last In, First Out) principle, where the last element added is the first to be removed. They are used for memory management, undo/redo operations, and more.## Article
For more detailed information on these implementations and their applications, read the full article on my portfolio:[Read the article here](https://jaugustodev.com.br/en/articles)
---
Made with :heart: by João Augusto