What member function places a new node at the end of the linked list?

Skill/Topic: Linked List
A) appendNode()
B) addNode()
C) displayNode()
D) structNode()
Explanation: The appendNode() member function places a new node at the end of the linked list. The appendNode() requires an integer representing the current data of the node.

Showing Answers 1 - 1 of 1 Answers

samiksc

  • Jan 20th, 2006
 

appendNode() will place a node at the end of the linked list.

addNode() may take two parameters, node to be inserted and position and add the element at the specified position.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions