Data Structures and Algorithms

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

1/3

flashcard set

Earn XP

Description and Tags

Study this to review your knowledge of DSA and Algorithmic Patterns

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

4 Terms

1
New cards

Set

A collection of distinct objects, considered as an object in its own right. Sets are commonly used in computer science for managing collections of items where duplicates are not allowed.

2
New cards

Linked List

A linear data structure where elements are stored in nodes, with each node pointing to the next, allowing for efficient insertions and deletions.

3
New cards

Array

A collection of items stored at contiguous memory locations, enabling efficient access by index. Fixed size and are commonly used for storing multiple items of the same type.

4
New cards

Python List

A built-in data structure in Python that is mutable, ordered, and can hold a collection of items of different types, allowing for dynamic resizing and easy manipulation. Can also be used as a stack with stack operations.