Recommended Books
Recommended Books
Recommended Books
Data Structures Using C++, By Author :D.S.Malik
C++ Plus Data Structures Fifth Edition, Nell B. Dale
(Author)
Data Structures and Algorithms Analysis in C++, 3rd
edition, by Mark Allen Weiss
Reference Books
Data Structures and Algorithms in C++, 2ndEdition,
Author: Micheal T. Goodrich, Roberto Tamassia and
David Mount John Wiley and Sons, Inc
Classic Data Structures, BySamanta Debasis(Author)
programming effort.
Data Structure Philosophy
Each data structure has costs and
benefits.
Rarely is one data structure better
than another in all situations.
A data structure requires:
space for each data item it stores,
time to perform each basic operation,
programming effort.
Data Structure Philosophy
Each data structure has costs and
benefits.
Rarely is one data structure better
than another in all situations.
A data structure requires:
space for each data item it stores,
time to perform each basic operation,
programming effort.
Memory Organization
The memory that communicates directly
with CPU is called main memory.
Devices that provides backup storage are
called secondary memory.
Only program and data currently needed
by the processor resides in main memory.
All other information is stored in auxiliary
(secondary) memory and transferred to
main memory when needed.