Data Structures in Python
Data structures -as their name suggests- are structures which can hold some data together. They are one of the most important fundamental concepts in Computer Science. There are four built-in data structures in Python.
- Lists
- Tuples
- Sets
- Dictionaries
I will introduce all of these built-in data structures in separate posts which can be reached by clicking the links above. Also, I will mention about frequently used data structures like,
- Arrays, NumPy Arrays, 2D Arrays and Matrices
- Linked Lists
- Stacks
- Queues
- Binary Trees
- Heaps
- Hash Tables
- Graphs
Let’s take a tour of these data structures together.
Please click the individual links for the detailed information about each data structure.