I am beginner when it comes to C Programming language.
I want to read a file block of 1 KB in memory and store it in a In-Memory HashTable. To handle collision I have a doubly linked list for each bucket in my HashTable.
Suppose I model a node of my linked list as a structure with next and previous pointer. How should I be storing this file block of 1 KB?
Any pointers or ideas appreciated.