Tag Archives: hash

BD-incollo 0.9 is out!

It took me about one year to find some time to enhance my project BD-incollo. I worked hard for 5 days and to add new features and fight the (huge) amount of spam that was wasting my database space. Now I’m very proud to announce bd-incollo 0.9, a free, light, speedy, anonymous Pastebin clone written

A first BD-incollo screenshot, report after 48 hours

Time for a screenshot! This is the page which handles new pastes: There are some news: I implemented a hash function (hexadecimal number as output) to be used to access pastes, instead of using their ids I played with templates to have all the functionalities accessed in very small mouse movements Next, the requirements regarding

Hash Maps with linear probing and separate chaining

Time for two new C programs! At the DSA course I learned something about Hash Tables and collision resolutions. I just implemented insert/search/print operations. The first source code is an implementation of a Hash Map with open addressing (linear probing) as collision resolution method. The following are the interesting functions of the program. As always,