1 / 24

Computer Programming

Computer Programming. Structures in C Language Lecture 19. Data Structures. A data structure is a user's implementation of a data abstraction that does not already exist in the language. we can define a data structure to describe a group of related data, such as a "record" in a file. e.g.

denali
Download Presentation

Computer Programming

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Computer Programming Structures in C Language Lecture 19

  2. Data Structures • A data structure is a user's implementation of a data abstraction that does not already exist in the language. • we can define a data structure to describe a group of related data, such as a "record" in a file. • e.g. • Student record (definition) • Example (content of such a record) ID Number Family Name Given Names Date of Birth 11112222 "Citizen" "John Andrew" "12/04/1989"

  3. Declaring Data Structures in C Syntax :- struct <structName> { <type> <memberName1>; <type> <memberName2>; <type> <memberName3>; ...... };

  4. Example: Declaring a C struct • struct Date • { • int day; • int month; • int year; • }; structure name members of the structure (sometimes called "fields") This merely declares a new data typecalled Date. You can then use it to create variables of type Date. Important:- Date is not a variable. There is no memory allocated for it. It is merely a type (like int, float, etc).

  5. Defining a Structure Variable Syntax :- <structName> <variableName>; Examples: Date birthday; • creates a variable called birthday of type Date. This variable has 3 components (members) : day, month, and year. Date today; • creates another variable of type Date, also with component parts called day,monthand year.

  6. Defining a Structure Variable Vs Defining a "normal" Variable int number; Date birthday; note the consistent format : <type> <variableName>; NAME of the variables TYPE of the variables

  7. Initializing Structure Type with string members struct Name { char first[30]; Char last[30]; }; Name poet_name; strcpy(poet_name.first,”Mirza”); strcpy(poet_name.last,”Ghalib”); Note : Values of the members need to be copied individually, AFTER the variable is created. "Mirza" "Ghalib"

  8. Members of Different Types struct Student { ... id; ... name; ... age; ... gender; }; student std; std.id = 1234; strcpy(std.name,”Hassan Ali”); std.age = 19; std.gender = 'M'; The members of a struct need not be of the same type. What should be the types of these members? 1234 “Hassan Ali” 19 ‘M’ ali

  9. Creating structure of Library Database struct Library { int ISBN, copies, PYear; char bookName[30], AuthorName[30], PublisherName[30]; };

  10. Accessing Structure Members Library libraryVariable; cin >> libraryVariable.ISBN; cin >> libraryVariable.bookName; cin >> libraryVariable.AuthorName; cout << libraryVariable.ISBN << libraryVariable.bookName << libraryVariable.AuthorName; int tempISBN = libraryVariable.ISBN + 1; The parts of the variable are accessed, NOT the parts of the structure type. The variable is the only thing that has memory allocated to it. The dot is called the “member” operator

  11. Examples of Common Errors in Accessing Structures cout << bookName;// Error! // bookName is not a variable. It is only the name of a member in a structure cout << Library.bookName;// Error! // Library is not the name of a variable. It is the name of a type

  12. Common Errors in Accessing Structures (contd.) cout << libraryVariable; //cout does not know how to handle the variable libraryVariable, as it is not one of the built-in types. You have to give it individual bits of libraryVariable that it can recognize and handle. cout << libraryVariable.ISBN << libraryVariable.bookName; //this is OK

  13. Accessing Structure Variables (Example 1) void main (void) { struct Library { int ISBN, copies, PYear; char bookName[30], AuthorName[30], PublisherName[30]; }; Library libraryVariable; libraryVariable.ISBN = 1293; strcpy (libraryVariable.bookName, “Network Security”); strcpy (libraryVariable.AuthorName, “Martin”); strcpy (libraryVariable.PublisherName, “Waley”); libraryVariable.copies = 4; libraryVariable.PYear = 1998; cout << libraryVariable.ISBN << libraryVariable.bookName << libraryVariable.AuthorName << libraryVariable.PublisherName << libraryVariable.copies << libraryVariable.PYear; }

  14. Accessing Structure Variables (Example 1) void main (void) { struct Library { int ISBN, copies, PYear; char bookName[30], AuthorName[30], PublisherName[30]; }; Library libraryVariable1, libraryVariable2, libraryVariable3, libraryVariable4; Library LibraryArray [4]; // alternative and easiest way }

  15. Assignment to Structure Variable • The value of a structure variable can be assigned to another structure variable of the same type, e.g : Library libraryVariable1, libraryVariable2; strcpy (libraryVariable1.bookName , “C Programming”); libraryVariable1.ISBN = 1293; libraryVariable2 = libraryVariable1; cout << libraryVariable2.bookName << libraryVariable2.ISBN; • Assignment is the only operation permitted on a structure. We can not add, subtract, multiply or divide structures.

  16. Structures within Structures void main () { struct University { char Name [30]; char city [30]; Library libraryVariable; }; University universityVariable; strcpy (universityVariable.Name, “UET”); strcpy (universityVariable.city, “ROME”); universityVariable.libraryVariable.ISBN = 1293; strcpy (universityVariable.libraryVariable.bookName, “C programming”); }

  17. Accessing Structure in Structure cin >> universityVariable.libraryVariable.bookName; cin >> universityVariable.libraryVariable.ISBN; cout << universityVariable.libraryVariable.bookName << universityVariable.libraryVariable.ISBN;

  18. Passing Structure Variables as Parameters • An individual structure member may be passed as a parameter to a function, e.g. : • validLibraryData (libraryVariable.ISBN); • An entire structure variable may be passed , e.g. : • validLibraryData (libraryVariable); • NOTE:- Structure variable is passed by value not by reference

  19. Example : Passing a Structure Member void validLibraryData (int ISBN); void main(void) { //assuming that Library structure has already defined Library libraryVarialbe; validLibraryData (libraryVariable.ISBN); } void validLibraryData (int ISBN) { cout << “Library ISBN = “ << ISBN; }

  20. Example :Passing an entire Structure struct Library { int ISBN, copies, PYear; char bookName[30], AuthorName[30], PublisherName[30]; }; void validLibraryData (Library var1); void main (void) { Library libraryVariable; libraryVariable.ISBN = 1293; strcpy (libraryVariable.bookName, “Network Security”); strcpy (libraryVariable.AuthorName, “Martin”); validLibraryData (libraryVariable); } void validLibraryData (Library var1) { cout << “ISBN = “ << var1.ISBN << “\n”; cout << “Book name = “ << var1.bookName << “\n”; }

  21. Returning a Structure Variable struct Library { int ISBN, copies, PYear; char bookName[30], AuthorName[30], PublisherName[30]; }; Library inputBookInformation (void); void main (void) { Library libraryVariable1; libraryVariable1 = inputBookInformation ( ); cout << libraryVariable1.ISBN << libraryVariable1.bookName; } Library inputBookInformation (void) { Library var1; var1.ISBN = 1293; strcpy (var1.bookName, “Network Security”); strcpy (var1.AuthorName, “Martin”); }

  22. Pointers to structure variables • Pointers of structure variablescan be declared like pointers to any basic data type Library var1, *ptrToLibrary; ptrToLibrary = &var1; • Members of a pointer structure type variable can be accessed using (->) operator ptrToLibrary->ISBN =20; strcpy( ptrToLibrary->bookName, “C Programming”);

  23. Pointers to structure variables (Example 1) void main (void) { Library libraryVariable1, *PtrToLibrary; libraryVariable.ISBN = 1293; strcpy (libraryVariable.bookName, “Network Security”); strcpy (libraryVariable.AuthorName, “Martin”); strcpy (libraryVariable.PublisherName, “Waley”); libraryVariable.copies = 4; libraryVariable.PYear = 1998; PtrToLibrary = &libraryVariable1; PtrToLibrary.ISBN = 3923; PtrToLibrary.copies = 10; cout << “The values are “ << libraryVariable1.ISBN << “ , ” << PtrToLibrary->ISBN; } Output: The values are 3923 , 3923

  24. Pass by Reference structure variables to Functions (Example 1) void Function1 (Library *ptr); void main (void) { Library var1; Function1 (&var1); cout << var1.ISBN << var1.bookName << var1.AuthorName; } void Function1 (Library libraryVariable) { libraryVariable.ISBN = 1293; strcpy (libraryVariable.bookName, “Network Security”); strcpy (libraryVariable.AuthorName, “Martin”); strcpy (libraryVariable.PublisherName, “Waley”); libraryVariable.copies = 4; libraryVariable.PYear = 1998; } Output: 1293 Network Security Martin

More Related