Lecture 14 - Doubly-Linked Lists and Pointers to Pointers Flashcards
pointers to pointers
- in the same way that we can create a pointer that points to an integer or a structure, we can also create a pointer that points to another pointer
- ptr_ptr->ptr->next
why use pointers to pointers?
- in some cases, we haven’t been able to get a single function to do everything we want
- ex. we’d like to have a function free() a memory location and set the pointer to NULL
- how can we create a function to do both of these operations?
- we need something that can modify the pointer in addition to what is pointed to
passing a pointer to a pointer?
- consider a function called my_free()
void my_free(struct double_l **ptr_ptr) {
struct double_l *ptr = NULL;
assert(ptr_ptr != NULL);ptr = *ptr_ptr;
free(ptr);
*ptr_ptr = NULL;
} - call it like my_free(&ptr)
other uses of passing a pointer to a pointer
- the main() function is passed a pointer to pointers to char
int main(int arc, char **argv) {
char *temp = NULL;
if (argc > 1) {
temp = arg[1];
printf(“argument 1 is: %s\n”, temp);
}
}
rules for using pointers to pointers
- issue of pointer type becomes more important
- cannot assign pointers to each other that are not the right type
- now you have more types to choose from
- you need to be sure what you are pointing to is something real (and that it’s still there)
- more NULL conditions to check for
pointer problems
- trying to dereference a null pointer will lead to undefined behavior
- will cause program to crash if you try to use the value or return a dereferenced NULL pointer
rules of thumb for multilevel pointers
- don’t user more levels of indirection than you need
- use multilevel pointers only when not doing so would be very inefficient or error prone
- you can triple-level pointers (but is probably wrong)
list operations using pointers to pointers
- look at another situation where using pointers to pointers makes sense
void prepend_to_head(struct item **head_ptr, struct item *new_ptr); - call like prepend_to_head_(&head, item_ptr);
prepend_to_head()
list elements containing pointers to other things
using internal pointers incorrectly…
why was the previous function incorrect?
using internal
pointers to pointers - again
the many faces of ‘zero’
the mark of zero
what to do about zero..
function pointers
declaring a function pointer
using a function pointer
passing a pointer to function
what’s passing a pointer to a function good for?
newton’s method
pointers to functions and linked-lists
new list_search
strings