-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap_example.c
68 lines (51 loc) · 1.22 KB
/
map_example.c
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
#include "sc_map.h"
#include <stdio.h>
void example_str(void)
{
const char *key, *value;
struct sc_map_str map;
sc_map_init_str(&map, 0, 0);
sc_map_put_str(&map, "jack", "chicago");
sc_map_put_str(&map, "jane", "new york");
sc_map_put_str(&map, "janie", "atlanta");
sc_map_foreach (&map, key, value) {
printf("Key:[%s], Value:[%s] \n", key, value);
}
sc_map_term_str(&map);
}
void example_int_to_str()
{
uint32_t key;
const char *value;
struct sc_map_64s map;
sc_map_init_64s(&map, 0, 0);
sc_map_put_64s(&map, 100, "chicago");
sc_map_put_64s(&map, 200, "new york");
sc_map_put_64s(&map, 300, "atlanta");
value = sc_map_get_64s(&map, 200);
if (sc_map_found(&map)) {
printf("Found Value:[%s] \n", value);
}
value = sc_map_del_64s(&map, 100);
if (sc_map_found(&map)) {
printf("Deleted : %s \n", value);
}
sc_map_foreach (&map, key, value) {
printf("Key:[%d], Value:[%s] \n", key, value);
}
value = sc_map_del_64s(&map, 200);
if (sc_map_found(&map)) {
printf("Found : %s \n", value);
}
value = sc_map_put_64s(&map, 300, "los angeles");
if (sc_map_found(&map)) {
printf("overridden : %s \n", value);
}
sc_map_term_64s(&map);
}
int main()
{
example_str();
example_int_to_str();
return 0;
}