which linked list is used in managing memory in data structure?
Answers
Answered by
29
Linked lists are inherently dynamic data structures; they rely on new and delete (or malloc and free ) for their operation. Normally, dynamic memory management is provided by the C/C++ standard library, with help from the operating system.
Similar questions