Linked Lists Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

// Structure for a node in the linked list

A

struct Node {
int data;
Node* next;
};

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