EECE.2160 ECE Application Programming

Slides:



Advertisements
Similar presentations
Dynamic memory allocation
Advertisements

Dynamic Memory Allocation in C.  What is Memory What is Memory  Memory Allocation in C Memory Allocation in C  Difference b\w static memory allocation.
CS1061: C Programming Lecture 21: Dynamic Memory Allocation and Variations on struct A. O’Riordan, 2004, 2007 updated.
COMP 1402 Winter 2009 Tutorial #8 malloc / calloc / realloc.
ECE Application Programming Instructor: Dr. Michael Geiger Fall 2012 Lecture 31: Dynamic memory allocation.
Spring 2005, Gülcihan Özdemir Dağ Lecture 12, Page 1 BIL104E: Introduction to Scientific and Engineering Computing, Spring Lecture 12 Outline 12.1Introduction.
CSCI 171 Presentation 11 Pointers. Pointer Basics.
Growing Arrays in C By: Victoria Tielebein CS 265- Spring 2011.
Agenda  Review: pointer & array  Relationship between pointer & array  Dynamic memory allocation.
More Pointers Write a program that: –Calls a function to input an integer value –The above function calls another function that will double the input value.
Kernighan/Ritchie: Kelley/Pohl:
Memory Allocation. Memory A memory or store is required in a computer to store programs (or information or data). Data used by the variables in a program.
Memory allocation CSE 2451 Matt Boggus. sizeof The sizeof unary operator will return the number of bytes reserved for a variable or data type. Determine:
Discussion: Week 3/26. Structs: Used to hold associated data together Used to group together different types of variables under the same name struct Telephone{
Programming III SPRING 2015 School of Computer and Information Sciences Francisco R. Ortega, Ph.D. McKnight Fellow and GAANN Fellow LECTURE #5 More about.
Lecture 13 Static vs Dynamic Memory Allocation
Dynamic Memory Allocation The process of allocating memory at run time is known as dynamic memory allocation. C does not Inherently have this facility,
ECE 103 Engineering Programming Chapter 47 Dynamic Memory Alocation Herbert G. Mayer, PSU CS Status 6/4/2014 Initial content copied verbatim from ECE 103.
ECE Application Programming
ECE Application Programming Instructors: Dr. Michael Geiger & Nasibeh Nasiri Fall 2015 Lecture 31: Structures (cont.) Dynamic memory allocation.
BIL 104E Introduction to Scientific and Engineering Computing Lecture 9.
DYNAMIC MEMORY ALLOCATION. Disadvantages of ARRAYS MEMORY ALLOCATION OF ARRAY IS STATIC: Less resource utilization. For example: If the maximum elements.
CSE 220 – C Programming malloc, calloc, realloc.
Stack and Heap Memory Stack resident variables include:
ECE Application Programming
ECE Application Programming
ECE Application Programming
Introduction to Programming
ECE Application Programming
Course Contents KIIT UNIVERSITY Sr # Major and Detailed Coverage Area
ECE Application Programming
CSCI206 - Computer Organization & Programming
Dynamic Memory Allocation
Programming Languages and Paradigms
EECE.2160 ECE Application Programming
Some examples.
Programming and Data Structures
Pointers and dynamic memory
CSC215 Lecture Memory Management.
Dynamic Memory Allocation
Dynamic Memory Allocation
CS111 Computer Programming
Memory Allocation CS 217.
Dynamic Memory Allocation
EECE.2160 ECE Application Programming
Dynamic Memory Allocation (and Multi-Dimensional Arrays)
EECE.2160 ECE Application Programming
CS111 Computer Programming
EENG212 – Algorithms & Data Structures Fall 07/08 – Lecture Notes # 5b
EECE.2160 ECE Application Programming
EECE.2160 ECE Application Programming
EECE.2160 ECE Application Programming
EECE.2160 ECE Application Programming
EECE.2160 ECE Application Programming
EECE.2160 ECE Application Programming
C Programming Lecture-8 Pointers and Memory Management
EECE.2160 ECE Application Programming
EECE.2160 ECE Application Programming
EECE.2160 ECE Application Programming
EECE.2160 ECE Application Programming
EECE.2160 ECE Application Programming
EECE.2160 ECE Application Programming
EECE.2160 ECE Application Programming
Dynamic Memory – A Review
EECE.2160 ECE Application Programming
EECE.2160 ECE Application Programming
EECE.2160 ECE Application Programming
Week 7 - Friday CS222.
EECE.2160 ECE Application Programming
EECE.2160 ECE Application Programming
Presentation transcript:

EECE.2160 ECE Application Programming Instructor: Dr. Michael Geiger Fall 2016 Lecture 29: PE4: Structures (continued) Dynamic memory allocation

ECE Application Programming: Lecture 29 Lecture outline Announcements/reminders Program 8 due 11/28 No lecture Wednesday, Friday (Thanksgiving) Today’s class Finish PE4: Structures Dynamic memory allocation 4/8/2019 ECE Application Programming: Lecture 29

ECE Application Programming: Lecture 29 Today’s exercise Given header files, main program Complete specified functions For the Name structure void printName(Name *n): Print the name pointed to by n, using format <first> <middle>. <last> void readName(Name *n): Prompt for and read a first, middle, and last name, and store them in the structure pointed to by n StudentInfo functions on next slide 4/8/2019 ECE Application Programming: Lecture 29

Today’s exercise (continued) Given header files, main program Complete specified functions Name functions on previous slide For the StudentInfo structure void printStudent(StudentInfo *s): Print information about the student pointed to by s void readStudent(StudentInfo *s): Prompt for and read information into the student pointed to by s void printList(StudentInfo list[], int n): Print the contents of an array list that contains n StudentInfo structures int findByLName(StudentInfo list[], int n, char lname[]): Search for the student with last name lname in the array list. Return the index of the structure containing that last name, or -1 if not found int findByID(StudentInfo list[], int n, unsigned int sID): Search for the student with ID # sID in the array list. Return the index of the structure containing that last name, or -1 if not found 4/8/2019 ECE Application Programming: Lecture 29

ECE Application Programming: Lecture 29 Name functions void printName(Name *n) { printf("%s %c. %s\n", n->first, n->middle, n->last); } void readName(Name *n) { printf("Enter name: "); scanf("%s %c. %s", n->first, &n->middle, n->last); 4/8/2019 ECE Application Programming: Lecture 29

Single StudentInfo functions void printStudent(StudentInfo *s) { printName(&s->sname); printf("ID #%.8u\n", s->ID); printf("GPA: %.2lf\n", s->GPA); } 4/8/2019 ECE Application Programming: Lecture 29

Single StudentInfo functions (cont.) void readStudent(StudentInfo *s) { readName(&s->sname); printf("Enter ID #: "); scanf("%u", &s->ID); printf("Enter GPA: "); scanf("%lf", &s->GPA); } 4/8/2019 ECE Application Programming: Lecture 29

ECE Application Programming: Lecture 29 printList() void printList(StudentInfo list[], int n) { int i; // Loop index for (i = 0; i < n; i++) { printStudent(&list[i]); printf("\n"); } } 4/8/2019 ECE Application Programming: Lecture 29

ECE Application Programming: Lecture 29 findByLName() int findByLName(StudentInfo list[], int n, char lname[]) { int i; // Loop index // Search for student with matching name // in list for (i = 0; i < n; i++) { if (strcmp(lname, list[i].sname.last) == 0) return i; } // If end of loop reached, student wasn’t // found return -1; 4/8/2019 ECE Application Programming: Lecture 29

ECE Application Programming: Lecture 29 findByID() int findByID(StudentInfo list[], int n, unsigned int sID) { int i; // Loop index // Search for student with matching ID in list for (i = 0; i < n; i++) { if (sID == list[i].ID) return i; } // If end of loop reached, student wasn’t // found return -1; 4/8/2019 ECE Application Programming: Lecture 29

Justifying dynamic memory allocation Data structures (i.e., arrays) usually fixed size Array length set at compile time Can often lead to wasted space May want ability to: Choose amount of space needed at run time Allows program to determine amount Modify size as program runs Data structures can grow or shrink as needed Dynamic memory allocation allows above characteristics 4/8/2019 ECE Application Programming: Lecture 29

Allocation functions (in <stdlib.h>) All return pointer to allocated data of type void * (no base type—just an address) Must cast to appropriate type Arguments of type size_t: unsigned integer Basic block allocation: void *malloc(size_t size); Allocate block and clear it: void *calloc(size_t nmemb, size_t size); Resize previously allocated block: void *realloc(void *ptr, 4/8/2019 ECE Application Programming: Lecture 29

Basic allocation with malloc() void *malloc(size_t size); Allocates size bytes; returns pointer Returns NULL if unsuccessful Example: int *p; p = malloc(10000); if (p == NULL) { /* Allocation failed */ } 4/8/2019 ECE Application Programming: Lecture 29

ECE Application Programming: Lecture 29 Type casting All allocation functions return void * Automatically type cast to appropriate type Can explicitly perform type cast: int *p; p = (int *)malloc(10000); Some IDEs (including Visual Studio) strictly require type cast 4/8/2019 ECE Application Programming: Lecture 29

ECE Application Programming: Lecture 29 Application: arrays One common use of dynamic allocation: arrays Can determine array size, then create space Use sizeof() to get # bytes per element Array notation can be used with pointers int i, n; int *arr; printf("Enter n: "); scanf("%d", &n); arr = (int *)malloc(n * sizeof(int)); for (i = 0; i < n; i++) arr[i] = i; 4/8/2019 ECE Application Programming: Lecture 29

Allocating/clearing memory: calloc() void *calloc(size_t nmemb, size_t size); Allocates (nmemb * size) bytes Sets all bits in range to 0 Returns pointer (NULL if unsuccessful) Example: integer array with n values int *p; p = (int *)calloc(n, sizeof(int)); 4/8/2019 ECE Application Programming: Lecture 29

Resizing allocated space: realloc() void *realloc(void *ptr, size_t size); ptr must point to previously allocated space Will allocate size bytes and return pointer size = new block size Rules: If block expanded, new bytes aren’t initialized If block can’t be expanded, returns NULL; original block unchanged If ptr == NULL, behaves like malloc() If size == 0, will free (deallocate) space Example: expanding array from previous slide p = (int *)realloc(p, (n+1)*sizeof(int)); 4/8/2019 ECE Application Programming: Lecture 29

Deallocating memory: free() All dynamically allocated memory should be deallocated when you are done using it Returns memory to list of free storage Once freed, program should not use location Deallocation function: void free(void *ptr); Example: int *p; p = (int *)malloc(10000); ... free(p); 4/8/2019 ECE Application Programming: Lecture 29

ECE Application Programming: Lecture 29 Next time Finish basic dynamic allocation Dynamically allocated data structures Reminders: Program 8 due 11/28 No lecture Wednesday, Friday (Thanksgiving) 4/8/2019 ECE Application Programming: Lecture 29