Skip to content

sathishmepco/Data-Structure

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Data-Structure

Data Structure problems coded in java

Single Linked List

Reverse Linked List

Binary Search Tree

Breadth First Search and Depth First Search

Breadth First Search :: 8 >> 3 >> 10 >> 1 >> 6 >> 9 >> 14
Depth First Search :: 8 >> 3 >> 1 >> 6 >> 10 >> 9 >> 14

Mirror of Binary Search Tree