Other Data Structures Concepts Flashcards
1
Q
Python lambda function
A
Ex: x = lambda a: a + 10
Print(x(5))
Result: 15
2
Q
Python assert
A
If condition returns true, nothing happens. Otherwise assertion error is raised
3
Q
Array
A
Indexed list of data elements
4
Q
Linked list
A
Data scattered through different cells. List contains reference to next node
5
Q
Bubble sort
A
Sorts adjacent data one at a time
6
Q
Quicksort
A
Uses pivots, pointers moving in opposite directions
7
Q
Quickselect
A
Quicksort, but keeps dividing the partition into 2