Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 572 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 572 Bytes

Coding-Practice

This repository contains the Data Structure implemention and Few Algorithms in Java with comment for references.

The Data Structure included in the repository are:

  1. Single Linked List
  2. Double Linked List
  3. Stack impelementation using Linked List
  4. Queue implementation using Linked List
  5. Binary Tree implementation using Linked List
      • In-order traversal using recursion
      • Post-order traversal using recursion
      • Pre-order traversal using recusion
      • Level-order traversal using Queue