Friday, October 17, 2008

Friday Night

Tonight I may see Madraso at The Funhouse with Matt.

I'm thinking about a way to enter the "strength" of a bond between two words, into my db. I can locate entries now, I just need to go one step further and increment the strength of bond, or if the word has never been seen, create a entry and strength for it.

Something like:

if(located)
{
row[location+1]++;
}
if(!located)
while(notPlaced)
{
if(row[i]==null)
{
row[i]=term;
row[i+1]++;
notPlaced==false;
}
}

No comments: