epatrizio / cds

Data structures in C language
The Unlicense
0 stars 0 forks source link

Hash_set, hash_map iterator #12

Open epatrizio opened 2 years ago

epatrizio commented 2 years ago

For now, with hash set and hash map primitives, impossible to loop through them naturally. That's why, for example, in graph DFS function, I have to use vectors (hash set base component) ! Not good !

To do : Implement iterator for hash set and hash map.