CS61C L05 Introduction to C (pt 3) (1) Garcia, Fall 2006 © UCB Lecturer SOE Dan Garcia www.cs.berkeley.edu/~ddgarcia inst.eecs.berkeley.edu/~cs61c CS61C.

Slides:



Advertisements
Similar presentations
Introduction to Linked Lists In your previous programming course, you saw how data is organized and processed sequentially using an array. You probably.
Advertisements

David Notkin Autumn 2009 CSE303 Lecture 13 This space for rent.
What is a pointer? First of all, it is a variable, just like other variables you studied So it has type, storage etc. Difference: it can only store the.
CSCI 171 Presentation 11 Pointers. Pointer Basics.
Kernighan/Ritchie: Kelley/Pohl:
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:
CS61C L03 Introduction to C (pt 1) (1) Garcia, Fall 2006 © UCB Lecturer SOE Dan Garcia inst.eecs.berkeley.edu/~cs61c CS61C.
1 Pointers A pointer variable holds an address We may add or subtract an integer to get a different address. Adding an integer k to a pointer p with base.
CS61C L04 Introduction to C (pt 2) (1) Garcia, Fall 2011 © UCB Reference slides You ARE responsible for the material on these slides (they’re just taken.
CS61C L03 Introduction to C (pt 1) (1) Garcia, Spring 2007 © UCB Lecturer SOE Dan Garcia inst.eecs.berkeley.edu/~cs61c CS61C.
CS61C L03 Introduction to C (pt 2) (1) Garcia, Fall 2006 © UCB Lecturer SOE Dan Garcia inst.eecs.berkeley.edu/~cs61c CS61C.
CS61C L05 C Structures, Memory Management (1) Garcia, Spring 2005 © UCB Lecturer PSOE Dan Garcia inst.eecs.berkeley.edu/~cs61c.
CS61C L4 C Memory Management (1) Beamer, Summer 2007 © UCB Scott Beamer, Instructor inst.eecs.berkeley.edu/~cs61c CS61C : Machine Structures Lecture #4.
CS 61C L03 Introduction to C (pt 1) (1) Garcia, Fall 2004 © UCB Lecturer PSOE Dan Garcia inst.eecs.berkeley.edu/~cs61c CS61C.
CS61C L04 Introduction to C (pt 2) (1) Garcia, Spring 2007 © UCB Lecturer SOE Dan Garcia inst.eecs.berkeley.edu/~cs61c CS61C.
CS61C L3 C Pointers (1) Garcia, Fall 2005 © UCB Lecturer PSOE, new dad Dan Garcia inst.eecs.berkeley.edu/~cs61c CS61C : Machine.
CS61C L3 C Pointers (1) Beamer, Summer 2007 © UCB Scott Beamer, Instructor inst.eecs.berkeley.edu/~cs61c CS61C : Machine Structures Lecture #3 – C Strings,
CS61C L04 Introduction to C (pt 2) (1) Garcia, Fall 2011 © UCB Lecturer SOE Dan Garcia inst.eecs.berkeley.edu/~cs61c CS61C.
CS61C L03 Introduction to C (pt 1) (1) Garcia, Spring 2005 © UCB Lecturer PSOE Dan Garcia inst.eecs.berkeley.edu/~cs61c.
CS61C L06 C Memory Management (1) Garcia, Spring 2007 © UCB Lecturer SOE Dan Garcia inst.eecs.berkeley.edu/~cs61c CS61C :
CS 61C L4 Structs (1) A Carle, Summer 2005 © UCB inst.eecs.berkeley.edu/~cs61c/su05 CS61C : Machine Structures Lecture #4: Strings & Structs
CS61CL L02 Dynamic Storage (1) Huddleston, Summer 2009 © UCB Jeremy Huddleston inst.eecs.berkeley.edu/~cs61c CS61CL : Machine Structures Lecture #3 -
CS61C L04 Introduction to C (pt 2) (1) Garcia, Spring 2008 © UCB Lecturer SOE Dan Garcia inst.eecs.berkeley.edu/~cs61c CS61C.
CS 61C L03 C Arrays (1) A Carle, Summer 2005 © UCB inst.eecs.berkeley.edu/~cs61c/su05 CS61C : Machine Structures Lecture #3: C Pointers & Arrays
CS61C L05 Introduction to C (pt 3) (1) Garcia, Spring 2007 © UCB Lecturer SOE Dan Garcia inst.eecs.berkeley.edu/~cs61c CS61C.
CS61C L06 C Memory Management (1) Garcia, Fall 2006 © UCB Lecturer SOE Dan Garcia inst.eecs.berkeley.edu/~cs61c CS61C : Machine.
1 CS 201 Dynamic Data Structures Debzani Deb. 2 Run time memory layout When a program is loaded into memory, it is organized into four areas of memory.
CS61C L04 C Pointers (1) Garcia, Spring 2005 © UCB Lecturer PSOE Dan Garcia inst.eecs.berkeley.edu/~cs61c CS61C : Machine.
CS 61C L03 C Pointers (1)Garcia / Patterson Fall 2002 © UCB CS61C - Machine Structures Lecture 3 C pointers  Dan Garcia (
CS61C L3 C Pointers (1) Chae, Summer 2008 © UCB Albert Chae Instructor inst.eecs.berkeley.edu/~cs61c CS61C : Machine Structures Lecture #3 – More C intro,
CS61CL L01 Introduction (1) Huddleston, Summer 2009 © UCB Jeremy Huddleston inst.eecs.berkeley.edu/~cs61c CS61CL : Machine Structures Lecture #2 - C Pointers.
1 Pointers, Dynamic Data, and Reference Types Review on Pointers Reference Variables Dynamic Memory Allocation –The new operator –The delete operator –Dynamic.
CS 61C L04 C Pointers (1) Garcia, Spring 2004 © UCB Lecturer PSOE Dan Garcia inst.eecs.berkeley.edu/~cs61c CS61C : Machine.
CS 61C L03 C Arrays (1) A Carle, Summer 2006 © UCB inst.eecs.berkeley.edu/~cs61c/ CS61C : Machine Structures Lecture #3: C Pointers & Arrays
CS 61C L04 C Structures, Memory Management (1) Garcia, Fall 2004 © UCB Lecturer PSOE Dan Garcia inst.eecs.berkeley.edu/~cs61c.
CS61C L4 C Pointers (1) Chae, Summer 2008 © UCB Albert Chae Instructor inst.eecs.berkeley.edu/~cs61c CS61C : Machine Structures Lecture #4 –C Strings,
Instructor: Justin Hsia 6/26/2013Summer Lecture #31 CS 61C: Great Ideas in Computer Architecture C Arrays, Strings, More Pointers.
CS 11 C track: lecture 5 Last week: pointers This week: Pointer arithmetic Arrays and pointers Dynamic memory allocation The stack and the heap.
EE4E. C++ Programming Lecture 1 From C to C++. Contents Introduction Introduction Variables Variables Pointers and references Pointers and references.
CMPSC 16 Problem Solving with Computers I Spring 2014 Instructor: Tevfik Bultan Lecture 12: Pointers continued, C strings.
1 C - Memory Simple Types Arrays Pointers Pointer to Pointer Multi-dimensional Arrays Dynamic Memory Allocation.
CSC 2400 Computer Systems I Lecture 5 Pointers and Arrays.
Chapter 0.2 – Pointers and Memory. Type Specifiers  const  may be initialised but not used in any subsequent assignment  common and useful  volatile.
C Programming Day 4. 2 Copyright © 2005, Infosys Technologies Ltd ER/CORP/CRS/LA07/003 Version No. 1.0 More on Pointers Constant Pointers Two ways to.
Topic 3: C Basics CSE 30: Computer Organization and Systems Programming Winter 2011 Prof. Ryan Kastner Dept. of Computer Science and Engineering University.
Pointers *, &, array similarities, functions, sizeof.
Computer Organization and Design Pointers, Arrays and Strings in C Montek Singh Sep 18, 2015 Lab 5 supplement.
Topic 4: C Data Structures CSE 30: Computer Organization and Systems Programming Winter 2011 Prof. Ryan Kastner Dept. of Computer Science and Engineering.
1 Lecture07: Memory Model 5/2/2012 Slides modified from Yin Lou, Cornell CS2022: Introduction to C.
POINTERS Introduction to Systems Programming - COMP 1002, 1402.
CSC Programming for Science Lecture 34: Dynamic Pointers.
CMPSC 16 Problem Solving with Computers I Spring 2014 Instructor: Lucas Bang Lecture 11: Pointers.
Chapter 16 Pointers and Arrays Pointers and Arrays We've seen examples of both of these in our LC-3 programs; now we'll see them in C. Pointer Address.
C Tutorial - Pointers CS 537 – Introduction to Operating Systems.
Instructor: Justin Hsia 6/20/2012Summer Lecture #31 CS 61C: Great Ideas in Computer Architecture C Arrays, Strings, More Pointers.
BIL 104E Introduction to Scientific and Engineering Computing Lecture 9.
CS 61C: Great Ideas in Computer Architecture C Pointers Instructors: Vladimir Stojanovic & Nicholas Weaver 1.
DYNAMIC MEMORY ALLOCATION. Disadvantages of ARRAYS MEMORY ALLOCATION OF ARRAY IS STATIC: Less resource utilization. For example: If the maximum elements.
Arrays and Pointers (part 1) CSE 2031 Fall July 2016.
CS61C L04 Introduction to C (pt 2) (1) Garcia, Spring 2010 © UCB Lecturer SOE Dan Garcia inst.eecs.berkeley.edu/~cs61c CS61C.
Overview Working directly with memory locations is beneficial. In C, pointers allow you to: change values passed as arguments to functions work directly.
March, 2006 Saeid Nooshabadi
Instructor Paul Pearce
C help session: Tonight 306 Soda
Inst.eecs.berkeley.edu/~cs61c CS61C : Machine Structures Lecture 5 – Introduction to C (pt 3) C Memory Management Lecturer SOE Dan Garcia.
CS61C - Machine Structures Lecture 4 C Structures Memory Management
Hello to Scott Sloan from Superior, WI!
There is one handout today at the front and back of the room!
Pointers The C programming language gives us the ability to directly manipulate the contents of memory addresses via pointers. Unfortunately, this power.
Chapter 16 Pointers and Arrays
Presentation transcript:

CS61C L05 Introduction to C (pt 3) (1) Garcia, Fall 2006 © UCB Lecturer SOE Dan Garcia inst.eecs.berkeley.edu/~cs61c CS61C : Machine Structures Lecture 4 – Introduction to C (pt 3) C Memory Management Video Download!  amazon unbox is launched, promising to change to the way movies are delivered. DVD-quality movies, but no Mac support. Sell netflix stock…

CS61C L05 Introduction to C (pt 3) (2) Garcia, Fall 2006 © UCB Kilo, Mega, Giga, Tera, Peta, Exa, Zetta, Yotta 1. Kim’s melodious giddiness terrifies people, excepting zealous yodelers 2. Kirby Messed Gigglypuff Terribly, (then) Perfectly Exterminated Zelda and Yoshi 3.Killed meat gives teeth peace except zebra yogurt 4.Kind Men Give Tense People Extra Zeal (for) Yoga 5.Killing melee gives terror; peace exhibits Zen yoga 6.Killing messengers gives terrible people exactly zero, yo 7.Kindergarten means giving teachers perfect examples (of) zeal (&) youth 8.Kissing mediocre girls/guys teaches people (to) expect zero (from) you 9.Kinky Mean Girls Teach Penis-Extending Zen Yoga 10.Kissing Mel Gibson, Teddy Pendergrass exclaimed: “Zesty, yo!” 1.Young Zebras Exclaim, “People Teach {Giraffes, Girls} Messy Kissing!” – Omar Akkawi 2.“King me,” Gina tells Perry, expert zebra yodeler – Diana Ko 3.Kirk met Gibson’s team, perilously expecting zealous youngsters – Diana Ko 4.Kind Men Give Ten Percent Expressly Zee Yoorphans – Daniel Gallagher 5.King Mel Gibson Tells People “Examine Ze Yoodle!” – Daniel Gallagher 6.Kizzle Meh Gizzle The Pezzle Exizzle Zeh Yo! – Daniel Gallagher 7.Killer Mechanical { Giraffe / Giant } Teaches Pet, Extinct Zebra, to Yodel – Larry Ly 8.Kilted Men Given Testosterone Perform Exceedingly Zealous Yoga –David Wu

CS61C L05 Introduction to C (pt 3) (3) Garcia, Fall 2006 © UCB Pointer Arithmetic Summary x = *(p+1) ?  x = *(p+1) ; x = *p+1 ?  x = (*p) + 1 ; x = (*p)++ ?  x = *p ; *p = *p + 1; x = *p++ ? (*p++) ? *(p)++ ? *(p++) ?  x = *p ; p = p + 1; x = *++p ?  p = p + 1 ; x = *p ; Lesson? These cause more problems than they solve!

CS61C L05 Introduction to C (pt 3) (4) Garcia, Fall 2006 © UCB C String Standard Functions int strlen(char *string); compute the length of string int strcmp(char *str1, char *str2); return 0 if str1 and str2 are identical How is this different from str1 == str2 ? char *strcpy(char *dst, char *src); copy the contents of string src to the memory at dst. The caller must ensure that dst has enough memory to hold the data to be copied.

CS61C L05 Introduction to C (pt 3) (5) Garcia, Fall 2006 © UCB Pointers (1/4) Sometimes you want to have a procedure increment a variable? What gets printed? void AddOne(int x) { x = x + 1; } int y = 5; AddOne( y); printf(“y = %d\n”, y); y = 5 …review…

CS61C L05 Introduction to C (pt 3) (6) Garcia, Fall 2006 © UCB Pointers (2/4) Solved by passing in a pointer to our subroutine. Now what gets printed? void AddOne(int *p) { *p = *p + 1; } int y = 5; AddOne(&y); printf(“y = %d\n”, y); y = 6 …review…

CS61C L05 Introduction to C (pt 3) (7) Garcia, Fall 2006 © UCB Pointers (3/4) But what if what you want changed is a pointer? What gets printed? void IncrementPtr(int *p) { p = p + 1; } int A[3] = {50, 60, 70}; int *q = A; IncrementPtr( q); printf(“*q = %d\n”, *q); *q = A q

CS61C L05 Introduction to C (pt 3) (8) Garcia, Fall 2006 © UCB Pointers (4/4) Solution! Pass a pointer to a pointer, declared as **h Now what gets printed? void IncrementPtr(int **h) { *h = *h + 1; } int A[3] = {50, 60, 70}; int *q = A; IncrementPtr(&q); printf(“*q = %d\n”, *q); *q = A q q

CS61C L05 Introduction to C (pt 3) (9) Garcia, Fall 2006 © UCB Dynamic Memory Allocation (1/4) C has operator sizeof() which gives size in bytes (of type or variable) Assume size of objects can be misleading and is bad style, so use sizeof(type) Many years ago an int was 16 bits, and programs were written with this assumption. What is the size of integers now? “ sizeof ” is not a real function – it does its work at compile time. So the following IS valid: char foo[3*sizeof(int)] But neither of these is valid in C: char foo[3*myfunction(int)] char foo[3*myfunction(7)]

CS61C L05 Introduction to C (pt 3) (10) Garcia, Fall 2006 © UCB Dynamic Memory Allocation (2/4) To allocate room for something new to point to, use malloc() (with the help of a typecast and sizeof ): ptr = (int *) malloc (sizeof(int)); Now, ptr points to a space somewhere in memory of size (sizeof(int)) in bytes. (int *) simply tells the compiler what will go into that space (called a typecast). malloc is almost never used for 1 var ptr = (int *) malloc (n*sizeof(int)); This allocates an array of n integers.

CS61C L05 Introduction to C (pt 3) (11) Garcia, Fall 2006 © UCB Dynamic Memory Allocation (3/4) Once malloc() is called, the memory location contains garbage, so don’t use it until you’ve set its value. After dynamically allocating space, we must dynamically free it: free(ptr); Use this command to clean up. Even though the program free s all memory on exit (or when main returns), don’t be lazy! You never know when your main will get transformed into a subroutine!

CS61C L05 Introduction to C (pt 3) (12) Garcia, Fall 2006 © UCB Dynamic Memory Allocation (4/4) The following two things will cause your program to crash or behave strangely later on, and cause VERY VERY hard to figure out bugs: free() ing the same piece of memory twice calling free() on something you didn’t get back from malloc() The runtime does not check for these mistakes Memory allocation is so performance-critical that there just isn’t time to do this The usual result is that you corrupt the memory allocator’s internal structure You won’t find out until much later on, in a totally unrelated part of your code!

CS61C L05 Introduction to C (pt 3) (13) Garcia, Fall 2006 © UCB Binky Pointer Video (thanks to SU)

CS61C L05 Introduction to C (pt 3) (14) Garcia, Fall 2006 © UCB C structures : Overview A struct is a data structure composed from simpler data types. Like a class in Java/C++ but without methods or inheritance. struct point { /* type definition */ int x; int y; }; void PrintPoint(struct point p) { printf(“(%d,%d)”, p.x, p.y); } struct point p1 = {0,10}; /* x=0, y=10 */ PrintPoint(p1); As always in C, the argument is passed by “value” – a copy is made.

CS61C L05 Introduction to C (pt 3) (15) Garcia, Fall 2006 © UCB C structures: Pointers to them Usually, more efficient to pass a pointer to the struct. The C arrow operator ( -> ) dereferences and extracts a structure field with a single operator. The following are equivalent: struct point *p; /* code to assign to pointer */ printf(“x is %d\n”, (*p).x); printf(“x is %d\n”, p->x);

CS61C L05 Introduction to C (pt 3) (16) Garcia, Fall 2006 © UCB How big are structs? Recall C operator sizeof() which gives size in bytes (of type or variable) How big is sizeof(p) ? struct p { char x; int y; }; 5 bytes? 8 bytes? Compiler may word align integer y

CS61C L05 Introduction to C (pt 3) (17) Garcia, Fall 2006 © UCB Linked List Example Let’s look at an example of using structures, pointers, malloc(), and free() to implement a linked list of strings. /* node structure for linked list */ struct Node { char *value; struct Node *next; }; Recursive definition!

CS61C L05 Introduction to C (pt 3) (18) Garcia, Fall 2006 © UCB typedef simplifies the code struct Node { char *value; struct Node *next; }; /* "typedef” means define a new type */ typedef struct Node NodeStruct; … OR … typedef struct Node { char *value; struct Node *next; } NodeStruct; … THEN typedef NodeStruct *List; typedef char *String; /* Note similarity! */ /* To define 2 nodes */ struct Node { char *value; struct Node *next; } node1, node2; String value;

CS61C L05 Introduction to C (pt 3) (19) Garcia, Fall 2006 © UCB Linked List Example /* Add a string to an existing list */ List cons(String s, List list) { List node = (List) malloc(sizeof(NodeStruct)); node->value = (String) malloc (strlen(s) + 1); strcpy(node->value, s); node->next = list; return node; } { String s1 = "abc", s2 = "cde"; List theList = NULL; theList = cons(s2, theList); theList = cons(s1, theList); /* or, just like (cons s1 (cons s2 nil)) */ theList = cons(s1, cons(s2, NULL));

CS61C L05 Introduction to C (pt 3) (20) Garcia, Fall 2006 © UCB Linked List Example /* Add a string to an existing list, 2nd call */ List cons(String s, List list) { List node = (List) malloc(sizeof(NodeStruct)); node->value = (String) malloc (strlen(s) + 1); strcpy(node->value, s); node->next = list; return node; } node: list: "abc" …… NULL ? s:

CS61C L05 Introduction to C (pt 3) (21) Garcia, Fall 2006 © UCB Linked List Example /* Add a string to an existing list, 2nd call */ List cons(String s, List list) { List node = (List) malloc(sizeof(NodeStruct)); node->value = (String) malloc (strlen(s) + 1); strcpy(node->value, s); node->next = list; return node; } node: list: "abc" …… NULL ? ? s:

CS61C L05 Introduction to C (pt 3) (22) Garcia, Fall 2006 © UCB Linked List Example /* Add a string to an existing list, 2nd call */ List cons(String s, List list) { List node = (List) malloc(sizeof(NodeStruct)); node->value = (String) malloc (strlen(s) + 1); strcpy(node->value, s); node->next = list; return node; } node: list: "abc" …… NULL ? "????" s:

CS61C L05 Introduction to C (pt 3) (23) Garcia, Fall 2006 © UCB Linked List Example /* Add a string to an existing list, 2nd call */ List cons(String s, List list) { List node = (List) malloc(sizeof(NodeStruct)); node->value = (String) malloc (strlen(s) + 1); strcpy(node->value, s); node->next = list; return node; } node: list: "abc" …… NULL ? "abc" s:

CS61C L05 Introduction to C (pt 3) (24) Garcia, Fall 2006 © UCB Linked List Example /* Add a string to an existing list, 2nd call */ List cons(String s, List list) { List node = (List) malloc(sizeof(NodeStruct)); node->value = (String) malloc (strlen(s) + 1); strcpy(node->value, s); node->next = list; return node; } node: list: s: "abc" …… NULL "abc"

CS61C L05 Introduction to C (pt 3) (25) Garcia, Fall 2006 © UCB Linked List Example /* Add a string to an existing list, 2nd call */ List cons(String s, List list) { List node = (List) malloc(sizeof(NodeStruct)); node->value = (String) malloc (strlen(s) + 1); strcpy(node->value, s); node->next = list; return node; } node: …… NULL "abc" s: "abc"

CS61C L05 Introduction to C (pt 3) (26) Garcia, Fall 2006 © UCB “And in Conclusion…” Use handles to change pointers Create abstractions with structures Dynamically allocated heap memory must be manually deallocated in C. Use malloc() and free() to allocate and deallocate memory from heap.

CS61C L05 Introduction to C (pt 3) (27) Garcia, Fall 2006 © UCB

CS61C L05 Introduction to C (pt 3) (28) Garcia, Fall 2006 © UCB Which are guaranteed to print out 5? I: main() { int *a-ptr; *a-ptr = 5; printf(“%d”, *a-ptr); } II: main() { int *p, a = 5; p = &a;... /* code; a & p NEVER on LHS of = */ printf(“%d”, a); } III: main() { int *ptr; ptr = (int *) malloc (sizeof(int)); *ptr = 5; printf(“%d”, *ptr); } Peer Instruction I II III 1: : - - YES 3: - YES - 4: - YES YES 5: YES - - 6: YES - YES 7: YES YES - 8: YES YES YES

CS61C L05 Introduction to C (pt 3) (29) Garcia, Fall 2006 © UCB int main(void){ int A[] = {5,10}; int *p = A; printf(“%u %d %d %d\n”,p,*p,A[0],A[1]); p = p + 1; printf(“%u %d %d %d\n”,p,*p,A[0],A[1]); *p = *p + 1; printf(“%u %d %d %d\n”,p,*p,A[0],A[1]); } If the first printf outputs , what will the other two printf output? 1: then : then : then 101 4: then 104 5: One of the two printfs causes an ERROR 6: I surrender! Peer Instruction A[1] 510 A[0]p