Convert Perl to C
I have about 500 lines of perl code that I would like to convert to C. The main goal behind this is performance optimization, namely with memory. The code makes a lot of use of 2d Perl Arrays and Hashtables. Most of the code is around reading in comma separated files, putting the data into a hashtable, and then running some computations based on what is in the hashtable. Right now the main data structure is a 2d hashtable, where the value of the hash is an array of values. This array of …
Original post by GetAFreelancer.com New Projects