-
Notifications
You must be signed in to change notification settings - Fork 11
/
structs.h
85 lines (65 loc) · 1.68 KB
/
structs.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#ifndef STRUCTS_H
#define STRUCTS_H
#include <stdlib.h>
#include <string.h>
#define HEAPSIZE 100
typedef struct node {
void *data;
struct node *next;
} Node;
typedef struct list {
Node *first;
Node *last;
int count;
} List;
typedef struct stack {
Node *last;
int count;
} Stack;
typedef struct heapEntry {
unsigned int value;
void *data;
} HeapEntry;
typedef struct minHeap {
HeapEntry **arr;
int size;
int count;
} MinHeap;
typedef struct hmapNode {
unsigned int key;
void *data;
struct hmapNode *next;
} HMapNode;
typedef struct hashmap {
HMapNode **table;
int size;
int count;
} HashMap;
typedef List Queue;
Node *node_create(void *data);
List *list_create();
void list_append(List *list, void *data);
void *list_get_first(List *list);
void list_free(List *list);
HeapEntry *heap_entry_create(unsigned int value, void *data);
MinHeap *minheap_create();
void minheap_free(MinHeap *heap);
void minheap_add(MinHeap *heap, void *item, unsigned int value);
void *minheap_remove_min(MinHeap *heap);
void **increase_size_arr(void **arr, int size);
Stack *stack_create();
void stack_push(Stack *stack, void *data);
void *stack_pop(Stack *stack);
void stack_free(Stack *stack);
Stack *stack_invert(Stack *stack);
HMapNode *hmapnode_create(unsigned int key, void *data);
HashMap *hashmap_create(int size);
// returns 1 if it was successfully added, 0 if already exists,
int hashmap_insert(HashMap *hmap, unsigned int key, void *data);
void *hashmap_remove(HashMap *hmap, unsigned int key);
void hashmap_free(HashMap *hmap);
Queue *queue_create();
void queue_free(Queue *q);
void queue_enqueue(Queue *queue, void *data);
void *queue_dequeue(Queue *queue);
#endif // !STRUCTS_H