I\'ve got a task, where I\'ve got to go through several billion string lines and check, whether each of those is unique. All the lines themselves cannot be accommodated within the RAM memory of the PC
For a site I am working on I use a library to get a list of states.It returns a numerically indexed array of states, each with three keys: stateCode, stateName, and stateSeg. It looks like this:
I have a problem choosing the right data structure/s, these are the requirements: I must be able to insert and delete elements
I am trying to work out a double pointer to a structure in C and cannot figure out what is going wrong... The simple source is below:
There is a data structure called NameObjectCollectionBase in .NET which I\'m trying to understand. Basically, it allows to enter arbitrary string => object key/value-pairs with both the possibility o
I\'m using the facebook api to retrieve a list of a user\'s photos. I\'m using this to work out the user\'s close friends by seeing who has been tagged the most in the user\'s photos. So what I have t
I\'m trying to read in from a huge list of words and store them in a way that allows me to make quick retrievals later on. I first thought of using a trie and I\'ll admit my implementation isnaive, it
I need to break a singly linked list into smaller linked lists after every 2 nodes . The approach I thought was,
I have an Entity which has an id and a title. The id is always the same but the title value change given a locale. I found three way to modelize this :
I\'m trying to teach myself java. I\'m trying to write a program that takes a string with no spaces and separates it into words.