InsertFront(10);
InsertFront(20);
InsertRear(30);
DeleteFront();
InsertRear(40);
InsertRear(10);
DeleteRear();
InsertRear(15);
display();
a) 10 30 10 15
b) 20 30 40 15
c) 20 30 40 10
d) 10 30 40 15
After performing these set of operations, what does the final list look contain?
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
After performing these set of operations, what does the final list look contain?
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!