The appendNode() function appends the new node to the list along with the programmer specifing where to place the new node in the linked list.

Skill/Topic: Stacks and Queues: Insert, Delete, Peek, Find
A) True
B) False
Explanation: The appendNode() function appends the new node to the list without requiring the programmer to specify where to place the new node in the linked list.

Showing Answers 1 - 1 of 1 Answers

No,the appendNode() function do append the new node at the programmers specified place instead it appends the new node at the tail of the linked list instead of head.If the likt is empty then it uses reference pointer to change the head pointer.

  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