Data Structures
Hash data structures
Arrays
int[] myArray = new int[5];Hash Map
my_dict = {'key1': 'value1', 'key2': 'value2'}Struct
Linked List
Set
Tuple
Last updated
int[] myArray = new int[5];my_dict = {'key1': 'value1', 'key2': 'value2'}Last updated
struct Person {
char name[50];
int age;
float salary;
};struct Node {
int data;
struct Node *next;
};my_set = {1, 2, 3}my_tuple = (1, 'text', 3.14)