dinesh Archive
In this article, we will discuss how to print nodes at k distance from the root of a binary tree. The trees are hierarchical data structures unlike Arrays, Linked Lists, Stack and queues, which are …
In this article, we will discuss how to delete a given node from the singly linked list. Given a pointer to a node to be deleted but we don’t have a pointer to head node. …
In this article, we will discuss how to reverse linked list in java. Iterative and Recursive there are two approaches, we can use to find the solution to this problem. As we know that, a …
In this article, we will discuss how to find the middle element in a linked list. A linked list has several nodes, and each node in the list has the content and a pointer to …
In this article, we will discuss an algorithm to find the nth node from the end of a singly linked list. First, let’s discuss what is singly liked list. Singly Linked List It is a …
In this article, we will discuss newly added Java 9 features. Oracle has released Open JDK 9 with the several new features and improvements on July 27, 2017. Java 9 brings outstanding improvements and new …
In this article of Java 10 New Added Features and Improvements, Java 10 has been initially released on 20 March 2018 with the several new features and improvements. After the release of Java 9, Java …