Singly linked list is palindrome without extra space

In this article, we will discuss how to check a singly linked list is palindrome or not without using any…

6 years ago

Print nodes at k distance from the root

In this article, we will discuss how to print nodes at k distance from the root of a binary tree.…

6 years ago

Delete given node from singly linked list

In this article, we will discuss how to delete a given node from the singly linked list. Given a pointer…

6 years ago

Reverse linked list in Java How to

In this article, we will discuss how to reverse linked list in java. Iterative and Recursive there are two approaches,…

6 years ago

Find the middle element in a linked list

In this article, we will discuss how to find the middle element in a linked list. A linked list has…

6 years ago

Find the nth node from the end of a singly linked list ?

In this article, we will discuss an algorithm to find the nth node from the end of a singly linked…

6 years ago

Java 9 features and improvements

In this article, we will discuss newly added Java 9 features. Oracle has released Open JDK 9 with the several…

6 years ago