L13 & 14: Linked Lists & Doubly-Linked Lists & Pointers to Pointers

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/5

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

6 Terms

1
New cards

allocate the head

What is the first thing we must do when creating a linked list?

2
New cards

False

You can traverse a singly linked list from tail to head.

3
New cards

previous and next

What two pointers must a doubly-linked list contain?

4
New cards

a suite of tools for debugging and profiling programs

What is Valgrind?

5
New cards

4

When you add a node to a linked list, how many steps are there?

6
New cards

int **num

Declare a pointer to a pointer to an int, titled num