- In The Linked List Implementation Of The Stack Class Where Does The Push Method Place The New Entry On The Linked List 1 (46.21 KiB) Viewed 30 times
In the linked list implementation of the stack class, where does the push method place the new entry on the linked list?
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
In the linked list implementation of the stack class, where does the push method place the new entry on the linked list?
In the linked list implementation of the stack class, where does the push method place the new entry on the linked list? At the head At the tail After all other entries that are greater than the new entry. After all other entries that are smaller than the new entry.