



Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
This is the report For The project (Student's Data & Finance Management) that is build in data structure in c++.
Typology: Study Guides, Projects, Research
1 / 7
This page cannot be seen from the preview
Don't miss anything!




DEPARTMENT OF COMPUTER SCIENCE ( BS-SE(B))
UNIVERSITY OF GUJRAT, SIALKOT CAMPUS,SIALKOT
ABSTRACT:
In Computing , Doubly linked list is a data structure which contain nodes. Each node in list contain data and specific pointers of next and previous nodes. One pointer to its successor (NULL if there is none) and one pointer to its predecessor (NULL if there is none).These pointers enable bi-directional traversing. To get the predecessor and successor of a specific student is made easy by doubly linked list. To search the student’s record, Move to forward and backward made easy by the doubly linked list.
Stack is a Data structure in which insertion and deletion takes place at the same end, this one end is called top and the other end is called bottom. Using stack data structure the records of top students easily accessed.
Develpoment language is C++:
IMPLIMENTATION TECHNIQUES:
Four Classes are used in this project.
PURPOSE Of each class is described below:
StNode class is the Base class of data class , because StNode contains All the variables and attributes that are used in data class. The following Functions are used in StNode Class ,
Etc……..
All these attributes setter and getter (setName,getName) set and return values. each and every variable comprises of this essential information apart from some specific attributes of that StNode. SetNext and Setprevious are that attributes which connects the TWO nodes as next to next and previous to previous.
StaNode (Stack Node) is also used setter getter attributes, Basically in this class the most of attributes are same as StNode class .StaNode class is the Base class of Stack class.Following attributes are include in this class ,,
Stack class is also used setter getter attributes, Basically in this class the records of those students includes who do not submitted their fee. The Remain Function is also used in StaNode class which describes the list of those students who have any kind of fee remaining.
Following attributes are include in this class.
Data class includes the personal details of each student. It includes the attributes for search, Delete, and add the students record. It also includes the attributes for sorting the