krishna14kant / Data-Structures-

hacktoberfest hacktoberfest2020 hacktoberfest-accepted
45 stars 481 forks source link

Updated Readme and Added some conceptual C++ code which were not included #558

Closed PriyanshK09 closed 9 months ago

PriyanshK09 commented 1 year ago

Updated README and Additional C++ Code

Updates

I have made several enhancements to this repository's README and introduced new C++ code examples to help you better understand data structures in practice.

Changes to README

New C++ Code Examples

In this section, you'll find conceptual C++ code examples related to data structures. These code snippets aim to demonstrate how to use data structures in real-world scenarios.

  1. Array Implementation: I've included code that shows how to implement an array in C++.

  2. Linked List Operations: Learn how to perform basic operations on a linked list, such as insertion and deletion.

  3. Stack and Queue Usage: Explore the usage of stacks and queues through practical C++ code.