Linked Lists

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

1/9

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.

10 Terms

1
New cards

Random Access Memory (RAM)

A type of computer memory that is used to temporarily store information and is reset when the computer is turned off.

2
New cards

Byte

A unit of digital information that consists of a sequence of eight bits.

3
New cards

ASCII table

A character encoding standard that uses numerical representations for characters.

4
New cards

Contiguous memory

Memory locations that are directly next to each other.

5
New cards

Array

A collection of elements stored at contiguous memory locations, with a fixed size determined at allocation.

6
New cards

Node

An object in a linked list that contains an element and a reference to the next node.

7
New cards

Reference

A pointer or address that allows access to a specific element or memory location.

8
New cards

Traversal

The process of accessing each element in a data structure in a sequential manner.

9
New cards

Null

A special value used to indicate that a reference does not point to any valid object or node.

10
New cards

Dynamic memory allocation

A method of allocating memory that allows for flexible sizes, enabling data structures to grow and shrink as needed.