Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~1K People Reached
Favorite Forums
Favorite Tags

7 Posted Topics

Member Avatar for thanatosys

Ok I will post all of the code at the bottom, first thing however is the loop below starts at 0, then increments to 1, but never increments any further. [code=python] for counter1 in range(fieldlength): if self.__fields[counter1] == field: for counter2 in range(rowlength): #print self.__rows[counter2][counter1] if self.__rows[counter2][counter1] == value: return1 …

Member Avatar for thanatosys
0
171
Member Avatar for Stefano Mtangoo

Well, I run OSX, so my editor of choice for html, java, php, c, and python is textmate. One editor that has syntax highlighting, project management, and plenty of keyboard shortcuts. Yes it costs money, but its a tool, and you get what you or someone else has paid for.

Member Avatar for mathijs
0
251
Member Avatar for atman
Member Avatar for Aia
0
176
Member Avatar for thanatosys

First here is my header file [code=c] /* @source Simplespell Program * * @author: Chris King([email protected]) * @@ * * node.h * CSC 230 Fall 2008 * * The @ signs along with the word denote specific information about * the program. Using the standards described in: * http://emboss.sourceforge.net/developers/c-standards_new.html */ …

Member Avatar for Aia
0
305
Member Avatar for thanatosys

I am still working on the lovely trie project, now I am working on file input that will be passed into the trie. I receive the following errors when I compile this code. [code] $ make gcc -Wall -g -c -o spellback.o spellback.c spellback.c: In function ‘main’: spellback.c:36: warning: implicit …

Member Avatar for thanatosys
0
144
Member Avatar for akbar002426

Go get some paper or a whiteboard with a few colored markers. Take a few hours / days to illustrate how all of your components should work together. Start with the smallest components and write them until you are done. I'm sure people here would be happy to help with …

Member Avatar for thanatosys
0
121
Member Avatar for thanatosys

I have a homework assignment for a c class I am in currently, the assignment is to write a simple spell checker. I am having a bit of trouble understanding how to write a trie in c. A trie would be composed of nodes, which contain the following I believe: …

Member Avatar for thanatosys
0
278

The End.