Basic Data Structures

0.0(0)
studied byStudied by 1 person
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

Data Structures

Way of organizing data so that it can be accessed more efficiently, “containers” that organize and group data according to type.

2
New cards

List

A collection which is ordered, changeable, and allows duplicate members. Can contain different data types.

3
New cards

Tuple

A collection which is ordered, unchangeable (immutable), and allows duplicate members.

4
New cards

Set

A collection which is unordered, unchangeable, unindexed, and does not allow duplicate members. Used to include membership testing and eliminating duplicate entries and can contain different data types.

5
New cards

Dictionary

A collection which is ordered, changeable, and does not allow duplicate members. Holds the key:value pair and cannot have two items with the same key.

6
New cards

Key

An object which can never change like strings, numbers, tuples, etc.