Data Structures Question:

How is any Data Structure application is classified among files?

Tweet Share WhatsApp

Answer:

A linked list application can be organized into a header file, source file and main application file. The first file is the header file that contains the definition of the NODE structure and the LinkedList class definition. The second file is a source code file containing the implementation of member functions of the LinkedList class. The last file is the application file that contains code that creates and uses the LinkedList class.

Download Data Structures PDF Read All 48 Data Structures Questions
Previous QuestionNext Question
What member function places a new node at the end of the linked list?Which file contains the definition of member functions?