Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 336 Bytes

File metadata and controls

12 lines (10 loc) · 336 Bytes

Data-Structures

This repo contains the C++ codes of basic Data structures and related operations.

The data structures contained in this are-

  • Linked lists
  • Stack
  • Binary search tree

And related operations are-

  • Reversing a linked list
    • By recursive approach
    • By iterative approach