Skip to content

This repository contains implementations of various data structures in C#.

License

Notifications You must be signed in to change notification settings

VelSkorp/DataStructures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DataStructures

This repository contains implementations of various data structures in C#.

Contents

The repository encompasses a diverse set of data structures implemented. Some of the key data structures included are:

  • Graph
  • LinkedList
  • Stack
  • Trees (e.g., BinaryTree, BTree)

Structure

DataStructures
├── Graph
│ ├── Graph.cs
│ ├── GraphEdge.cs
│ └── GraphVertex.cs
├── HashTable
│ ├── HashTable.cs
│ └── Item.cs
├── LinkedList
│ ├── LinkedList.cs
│ └── Node.cs
├── Stack
│ ├── FixedStack.cs
│ ├── ResizableFixedStack.cs
│ ├── NodeStack.cs
│ └── Node.cs
├── Trees
│ ├── BinaryTree.cs
│ ├── BinaryTreeNode.cs
│ ├── BTree.cs
│ └── BTreeNode.cs
└── Tests
  ├── Data
  │ └── LinkedListTestsData.cs
  ├── Graph.cs
  ├── HashTable.cs
  ├── LinkedList.cs
  ├── Stack.cs
  └── Trees.cs

Usage

  1. Clone the repository:
git clone https://github.com/VelSkorp/DataStructures.git
  1. Open the solution in Visual Studio or other IDE.
  2. Navigate to the desired data structure directory.
  3. Follow the instructions provided in the source file to understand and utilize the data structure.

Contributing

Contributions to DataStructures are welcome! If you find any issues or have ideas for improvements, feel free to open an issue or submit a pull request on GitHub.

License

This project is licensed under the MIT License - see the LICENSE file for details.

About

This repository contains implementations of various data structures in C#.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages