Consider the Double Linked List that is given below, where each box represents a 'node type with two fields: integer data and a node type reference 'next' that points to the next node in the list. a) Write an algorithm to count all nodes that contain an odd number. b) Write an algorithm to print all nodes that contain an even number in the reverse direction of the list.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 18PE
icon
Related questions
Question
Given the following definition of a single linked list, write a method that calculates and returns the sum of even integers in a linked list.
public class SLL<E> {
private static class Node<E>{
private E data;
private Node<E> next;
private Node(E dataltem) {
data = dataltem;
next = null;
}
private Node(E dataltem, Node<E> nodeRef) {
data = dataltem;
next = nodeRef,
}
}
private Node<E> head = null;
private int size = 0;
}
Transcribed Image Text:Given the following definition of a single linked list, write a method that calculates and returns the sum of even integers in a linked list. public class SLL<E> { private static class Node<E>{ private E data; private Node<E> next; private Node(E dataltem) { data = dataltem; next = null; } private Node(E dataltem, Node<E> nodeRef) { data = dataltem; next = nodeRef, } } private Node<E> head = null; private int size = 0; }
QUESTION 13
Consider the Double Linked List that is given below, where each box represents a 'node' type with two fields: integer data and a node type reference
'next' that points to the next node in the list.
a) Write an algorithm to count all nodes that contain an odd number.
b) Write an algorithm to print all nodes that contain an even number in the reverse direction of the list.
head
null
null
2
4
5
7
tail
T T T Arial
v 3 (12pt)
v T
ABC
Path: p
Words:0
II
I!!
3.
3.
Transcribed Image Text:QUESTION 13 Consider the Double Linked List that is given below, where each box represents a 'node' type with two fields: integer data and a node type reference 'next' that points to the next node in the list. a) Write an algorithm to count all nodes that contain an odd number. b) Write an algorithm to print all nodes that contain an even number in the reverse direction of the list. head null null 2 4 5 7 tail T T T Arial v 3 (12pt) v T ABC Path: p Words:0 II I!! 3. 3.
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Threads in linked list
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning