vhyran/ziglings
Data Structures and Algorithms in Zig
Welcome to the Data Structures and Algorithms (DSA) repository implemented in the Zig programming language! This repository serves as a resource for anyone interested in learning about fundamental DSA concepts and their implementations in Zig.
This repository contains implementations of common data structures and algorithms in Zig. The goal is to provide clean, efficient, and well-documented code that serves as both a learning resource and a utility for developers.
Zig is a modern programming language designed for simplicity, performance, and reliability. Its features include:
These features make Zig a great choice for implementing efficient and predictable data structures and algorithms.
You can find the official Zig documentation. This documentation provides comprehensive information about the Zig programming language, including its syntax, features, and standard library.
Install Zig on your system.
To compile and run an implementation:
zig build-exe <filename>.zig
./<filename>
Contributions are welcome! If you’d like to add a new data structure, algorithm, or improve existing implementations, please follow these steps:
git checkout -b feature/<your-feature>
.git commit -m 'Add new feature'
.git push origin feature/<your-feature>
.Ensure your code follows the Zig coding standards and includes appropriate comments and test cases.
This repository is licensed under the MIT License. See the LICENSE file for details.
Feel free to explore, learn, and contribute!