1/3
Study this to review your knowledge of DSA and Algorithmic Patterns
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
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.
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.
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.
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.