Showing posts with label Data Structure. Show all posts
Showing posts with label Data Structure. Show all posts

How to create a graph using Java

Let's see simple graph creation using core java and printing all the vertex along with list of edges which goes from that particular Vertex. public class MyGraph { public static void main(String[] args) {...

How to print singly linked list in reverse order

If we talk about Singly Linked List then it will be a 1 way traversal from head node to tail node. But if we need to print the linked list values from tail node...

How to Design a simple LRU cache in Java

Design and implement a data structure for Least Recently Used (LRU) cache by supporting set() and get() operations with O(1) complexity.  Least Recently Used (LRU) Cache? Its a caching mechanism where we evicts least...

Simple, how to get only left child in BST

As same as traversals like inorder, preorder, postorder and level order we need to traverse to BST and need to print only the left child of each nodes in Binary Search Tree. From below...

How to do Level order traversal in Binary Search Tree

We have see lot of tutorials based on Binary tree and also other traversals like Inorder, Preorder and Postorder etc., Now in this tutorial lets see how to do Level order traversal of Binary...