Hafeezul Kareem has Published 344 Articles

Delete all the nodes from a doubly linked list that are smaller than a given value in C++

Hafeezul Kareem

Hafeezul Kareem

Updated on 30-Dec-2020 06:55:49

200 Views

In this tutorial, we are going to learn how to delete all prime nodes from a doubly linked list.Let's see the steps to solve the problem.Write struct with data, prev and next pointers.Write a function to insert the node into the doubly linked list.Initialize the doubly linked list with dummy ... Read More

Delete all the even nodes from a Doubly Linked List in C++

Hafeezul Kareem

Hafeezul Kareem

Updated on 30-Dec-2020 06:53:58

721 Views

In this tutorial, we are going to learn how to delete all prime nodes from a doubly linked list.Let's see the steps to solve the problem.Write struct with data, prev and next pointers.Write a function to insert the node into the doubly linked list.Initialize the doubly linked list with dummy ... Read More

Delete all Prime Nodes from a Singly Linked List in C++

Hafeezul Kareem

Hafeezul Kareem

Updated on 30-Dec-2020 06:51:52

416 Views

In this tutorial, we are going to learn how to delete all prime nodes from a singly linked list.Let's see the steps to solve the problem.Write struct with data and next pointer.Write a function to insert the node into the singly linked list.Initialize the singly linked list with dummy data.Iterate ... Read More

Delete all Prime Nodes from a Doubly Linked List in C++

Hafeezul Kareem

Hafeezul Kareem

Updated on 30-Dec-2020 06:49:35

145 Views

In this tutorial, we are going to learn how to delete all prime nodes from a doubly linked list.Let's see the steps to solve the problem.Write struct with data, prev and next pointers.Write a function to insert the node into the doubly linked list.Initialize the doubly linked list with dummy ... Read More

Delete all Non-Prime Nodes from a Singly Linked List in C++

Hafeezul Kareem

Hafeezul Kareem

Updated on 30-Dec-2020 06:47:16

110 Views

In this tutorial, we are going to learn how to delete all prime nodes from a singly linked list.Let's see the steps to solve the problem.Write struct with data and next pointer.Write a function to insert the node into the singly linked list.Initialize the singly linked list with dummy data.Iterate ... Read More

Delete a node in a Doubly Linked List in C++

Hafeezul Kareem

Hafeezul Kareem

Updated on 30-Dec-2020 06:45:03

6K+ Views

In this tutorial, we are going to learn how to delete a node in doubly linked list.Let's see the steps to solve the problem.Write struct with data, prev and next pointers.Write a function to insert the node into the doubly linked list.Initialize the doubly linked list with dummy data.Take a ... Read More

Delete a Node from linked list without head pointer in C++

Hafeezul Kareem

Hafeezul Kareem

Updated on 30-Dec-2020 06:43:17

1K+ Views

In this tutorial, we are going to learn how to delete a node without head pointer in a singly linked list.Let's see the steps to solve the problem.Write struct with data, and next pointer.Write a function to insert the node into the singly linked list.Initialize the singly linked list with ... Read More

Delete a Linked List node at a given position in C++

Hafeezul Kareem

Hafeezul Kareem

Updated on 30-Dec-2020 06:42:00

4K+ Views

In this tutorial, we are going to learn how to delete a node in singly linked list with the given position.Let's see the steps to solve the problem.Write struct with data, and next pointer.Write a function to insert the node into the singly linked list.Initialize the singly linked list with ... Read More

Delete a Doubly Linked List node at a given position in C++

Hafeezul Kareem

Hafeezul Kareem

Updated on 30-Dec-2020 06:38:44

1K+ Views

In this tutorial, we are going to learn how to delete a node in doubly linked list with the given position.Let's see the steps to solve the problem.Write struct with data, prev and next pointers.Write a function to insert the node into the doubly linked list.Initialize the doubly linked list ... Read More

Deepest left leaf node in a binary tree in C++

Hafeezul Kareem

Hafeezul Kareem

Updated on 30-Dec-2020 06:36:43

198 Views

In this tutorial, we are going to find the deepest left leaf node in the binary tree. Let's see the binary tree.   A       B    C D       E       F                      GLet's see ... Read More

Advertisements