Lecture 14 - Doubly-Linked Lists and Pointers to Pointers Flashcards

1
Q

pointers to pointers

A
  • 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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

why use pointers to pointers?

A
  • 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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

passing a pointer to a pointer?

A
  • 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)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

other uses of passing a pointer to a pointer

A
  • 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);
    }
    }
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

rules for using pointers to pointers

A
  • 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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

pointer problems

A
  • 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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

rules of thumb for multilevel pointers

A
  • 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)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

list operations using pointers to pointers

A
  • 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);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

prepend_to_head()

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

list elements containing pointers to other things

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

using internal pointers incorrectly…

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

why was the previous function incorrect?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

using internal

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

pointers to pointers - again

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

the many faces of ‘zero’

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

the mark of zero

17
Q

what to do about zero..

18
Q

function pointers

19
Q

declaring a function pointer

20
Q

using a function pointer

21
Q

passing a pointer to function

22
Q

what’s passing a pointer to a function good for?

23
Q

newton’s method

24
Q

pointers to functions and linked-lists

25
Q

new list_search

26
Q

strings