Skip to content

Commit b6599a9

Browse files
authored
Merge pull request #12 from sahilaf/main
Bug fix sidebar and navbar
2 parents 7b0a50e + f6091f1 commit b6599a9

5 files changed

Lines changed: 20 additions & 6 deletions

File tree

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,29 @@
1+
12
**C-STRUCTURE: Empowering Students with Efficient Data Structures in C**
23

34
---
45

6+
## Overview
57
A comprehensive collection of header files of 'C' language focusing on the data-structures started by [@Fatin Shadab](https://github.com/FatinShadab) maintained by [@UIU Developers Hub](https://github.com/UIU-Developers-Hub)
68

79
---
810

911
Welcome to C-STRUCTURE, your go-to repository for mastering data structures in C. Here, we provide meticulously crafted header files, starting with our flagship implementation: the Singly Linked List (SLL). As an open-source contribution hub, this repository serves as a foundation for various data structure implementations, helping developers enhance their skills and contribute to the coding community.
1012

11-
**Header Files**
13+
## Header Files
1214
- [**sll.h** ](https://github.com/UIU-Developers-Hub/C-STRUCTURE/tree/main/SLL) : Implementation of 'Single Linked List'
1315
- [**dll.h** ](https://github.com/UIU-Developers-Hub/C-STRUCTURE/tree/main/DLL) : Implementation of 'Doubly Linked List'
1416

1517

16-
**Features**
18+
## Features
1719

1820
- **Modular Design**: Each header file is designed with modularity in mind, allowing developers to seamlessly integrate different data structures into their projects.
1921

2022
- **Open Source**: Contribute your own implementations of data structures in C and collaborate with a vibrant community of developers.
2123

2224
- **Educational Resource**: Whether you're a beginner learning the basics or an experienced programmer looking to sharpen your skills, our repository offers valuable insights into data structure implementation and manipulation.
2325

24-
**Getting Started**
26+
## Getting Started
2527

2628
1. **Clone the Repository**:
2729
```bash
@@ -38,11 +40,11 @@ Welcome to C-STRUCTURE, your go-to repository for mastering data structures in C
3840
- Add or update header file following our template and guidelines
3941
- Submit a pull request to contribute your implementation to the community
4042

41-
**Contributing**
43+
## Contributing
4244

4345
We welcome contributions from developers of all skill levels. Feel free to mail me [here](mailto:[email protected])
4446

45-
**License**
47+
## License
4648

4749
This project is licensed under the [MIT License](https://github.com/FahimFBA/C-STRUCTURE/blob/main/LICENSE) - see the LICENSE file for details.
4850

SLL/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ This repository provides a generic implementation of a singly linked list (SLL)
133133
134134
* freeSLL(sll, type): Frees the memory occupied by all nodes in the linked list and resets the list.
135135
136-
##### *** For detailed function descriptions and usage examples, please refer to the header file 'sll.h' and 'sll.c'.
136+
For detailed function descriptions and usage examples, please refer to the header file 'sll.h' and 'sll.c'.
137137
138138
### Contributing
139139
---

_navbar.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
- [Home](/)
2+
3+
- Header Files
4+
- [Doubly Linked List](/DLL/README.md)
5+
- [Singly Linked List](/SLL/README.md)

_sidebar.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
- [Home](/README.md)
2+
3+
4+
- [Doubly Linked List](/DLL/README.md)
5+
- [Singly Linked List](/SLL/README.md)

index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
repo: "UIU-Developers-Hub/C-STRUCTURE",
2727
relativePath: true,
2828
subMaxLevel: 5,
29+
loadSidebar: true,
30+
loadNavbar: true,
2931
search: "auto",
3032
search: {
3133
maxAge: 86400000,

0 commit comments

Comments
 (0)