InterviewSolution
Saved Bookmarks
| 1. |
What is xor linked list?(a) uses of bitwise XOR operation to decrease storage requirements for doubly linked lists(b) uses of bitwise XOR operation to decrease storage requirements for linked lists(c) uses of bitwise operations to decrease storage requirements for doubly linked lists(d) just another form of linked listQuestion is taken from Xor Linked List in portion Types of Lists of Data Structures & Algorithms II got this question by my college director while I was bunking the class. |
|
Answer» CORRECT answer is (a) uses of bitwise XOR OPERATION to decrease storage requirements for doubly LINKED lists For explanation: Why we USE bitwise XOR operation is to decrease storage requirements for doubly linked lists. |
|