Lost Password?

Go Back   CodeCall Programming Forum > Software Development > Java Help

Unregistered, Check out the Coder Battles in the Announcement and Game forums.

Java Help Java Help forum discussing all Java platforms - J2ME, J2SE and J2EE - as well as relevant standards, APIs and frameworks such as Swing, Servlets, JSPs, Applets, Struts, Spring, Hibernate, ANT, EJB, and other Java-related topics.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 06-11-2007, 06:17 PM
programmer 101 programmer 101 is offline
Newbie
 
Join Date: Jun 2007
Posts: 4
Credits: 0
Rep Power: 0
programmer 101 is on a distinguished road
Default Dictonary Program

Can somebody please direct me to source code for a simple CUI dictionary program (english please). Any help would be greatly appreciated!!!

Thanks so much!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
  #2 (permalink)  
Old 06-12-2007, 06:40 AM
John's Avatar   
John John is offline
Co-Administrator
 
Join Date: Jul 2006
Age: 19
Posts: 3,205
Last Blog:
Passwords
Credits: 842
Rep Power: 20
John has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud of
Send a message via AIM to John
Default

You need to find a dictionary file, then you can implement a Trie to search through the file.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 06-12-2007, 07:29 AM
programmer 101 programmer 101 is offline
Newbie
 
Join Date: Jun 2007
Posts: 4
Credits: 0
Rep Power: 0
programmer 101 is on a distinguished road
Default

what do u mean by a "file" as in a .txt containing words?
What would be easier, the trie or hash table...?

I think the trie is faster.. Thanks alot for the help, But what do you mean as in a "File?"
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 06-12-2007, 03:35 PM
John's Avatar   
John John is offline
Co-Administrator
 
Join Date: Jul 2006
Age: 19
Posts: 3,205
Last Blog:
Passwords
Credits: 842
Rep Power: 20
John has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud of
Send a message via AIM to John
Default

It doesn't have to be a txt file, its just any file that contains words. When I implemented a dictionary into my last program the file didn't even have an extention. It was just called "words." Just google "dictionary file" or something similar and download a txt, doc, or any type of file that contains words.

And as for the searching algorithm, when it comes to dictionary's I believe the Trie is the fastest you can get. I believe it is O(1) where a hash table would be O(n).

Below is a Trie class one of my dev teams made for a project, its been a while since I've looked at the code - its pretty complex, but if you are good with Java you should be able to work your way through it.

Code:
package codecall.net

import java.util.ArrayList;
import java.util.List;

/**
 * Provides a trie structure for an implementation of a dictionary. Since words 
 * never need to be removed from a dictionary during play, there is no option in 
 * this trie to remove a word.
 *
 * 
 *
 * Created on: Apr 13, 2006
 *
 */
public class Trie {
	
	private TrieRecursive[] _trie = new TrieRecursive[26];
	
	//	is the ASCII value of 'A'. When subtracted from a char's value, will provide the char's index value.
	private static final int ASCII_MOD = 65;

	/**
	 * Creates a new Trie structure, base case, which contains no datum, but only contains 
	 * 26 references to recursive trie structures.
	 */
	public Trie() {
	}
	
	/**
	 * Adds the given word into the trie structure.
	 * @param word The word to be added to the trie.
	 * @return true if the word was successfully added.
	 */
	public boolean addWord(String word) {
		if ((word.equals(""))||(!Character.isLetter(word.charAt(0)))) {
			return false;
		}
		
		char firstLetter = Character.toUpperCase(word.charAt(0));
		int index = (int)firstLetter - ASCII_MOD;
		
		if (_trie[index] == null) {
			_trie[index] = new TrieRecursive(firstLetter);
		}
		return _trie[index].addWord(word.substring(1));
		
	}
	
	/**
	 * Checks to see if the given word is in the trie.
	 * @param word The word to be checked.
	 * @return true if the word is in the trie.
	 */
	public boolean isWord(String word) {
		if ((word.equals(""))||(!Character.isLetter(word.charAt(0)))) {
			return false;
		}
		
		int index = (int)(Character.toUpperCase(word.charAt(0))) - ASCII_MOD;
		if (_trie[index] == null) {
			return false;
		}
		return _trie[index].isWord(word.substring(1));
		
	}
	
	/**
	 * Returns an ArrayList containing all words that are stored in the trie.<br><br>
	 * 
	 * An equivalent method can be performed by calling <tt>getWords("");</tt>
	 * @return All words, in the form of an ArrayList<String>.
	 */
	public List<String> getAllWords() {
		List<String> wordList = new ArrayList<String>();
		
		for (int i = 0; i < 26; i++) {
			if (_trie[i] != null)
				_trie[i].getAllWords(wordList, "");
		}
		
		return wordList;
	}
	
	/**
	 * Returns an ArrayList containing all words stored in the trie that begin with the specified letters.
	 * @param initial The first letters of the words to be found.
	 * @return All words beginning with the specified letters, in the form of an ArrayList<String>.
	 */
	public List<String> getWords(String initial) {
		List<String> wordList = new ArrayList<String>();
		
		if (initial.equals("")) {
			for (int i = 0; i < 26; i++) {
				if (_trie[i] != null)
					_trie[i].getWords(wordList, initial, "");
			}
		}
		else if (Character.isLetter(initial.charAt(0))) {
			int index = (int)(Character.toUpperCase(initial.charAt(0))) - ASCII_MOD;
			if (_trie[index] != null) {
				_trie[index].getWords(wordList, initial.substring(1), "");
			}
		}
		
		return wordList;
	}
	
	/**
	 * The recursive structure of the Trie superclass.
	 *
	 * @author Team S
	 *
	 * Created on: Apr 13, 2007
	 *
	 */
	private class TrieRecursive {
		private char _datum;
		private boolean _isEndOfWord = false;
		private TrieRecursive[] _subtrie = new TrieRecursive[26];
		
		/**
		 * Creates a new recursive Trie object. Each object contains a datum and
		 * an array of 26 potential subTries. 
		 * @param c The char representation of the Trie object.
		 */
		public TrieRecursive(char c) {
			_datum = c;
		}
		
		/**
		 * Adds the given word into the trie structure.
		 * @param word The word to be added to the trie.
		 * @return true if the word was successfully added.
		 */
		public boolean addWord(String word) {
			if (word.equals("")) {
				if (_isEndOfWord)
					return false;
				_isEndOfWord = true;
				return true;
			}
			if ( !Character.isLetter( word.charAt(0) )) {
				return false;
			}
			
			char firstLetter = Character.toUpperCase(word.charAt(0));
			int index = (int)firstLetter - ASCII_MOD;
			
			if (_subtrie[index] == null) {
				_subtrie[index] = new TrieRecursive(firstLetter);
			}
			return _subtrie[index].addWord(word.substring(1));
			
		}
		
		/**
		 * Checks to see if the given word is in the trie.
		 * @param word The word to be checked.
		 * @return true if the word is in the trie.
		 */
		public boolean isWord(String word) {
			if (word.equals("")) {
				return _isEndOfWord;
			}
			if ( !Character.isLetter( word.charAt(0) )) {
				return false;
			}
			
			int index = (int)(Character.toUpperCase(word.charAt(0))) - ASCII_MOD;
			if (_subtrie[index] == null) {
				return false;
			}
			return _subtrie[index].isWord(word.substring(1));
		}
		
		/**
		 * If a word ends at this level, adds the word to the wordList. Then, calls 
		 * this method on all the subTries.
		 * @param wordList The List to which valid words are added.
		 * @param stub A string representing the word formed by the path of parent nodes.
		 */
		public void getAllWords(List<String> wordList, String stub) {
			stub += _datum;
			if (_isEndOfWord) 
				wordList.add(stub);
			
			for (int i = 0; i < 26; i++) {
				if (_subtrie[i] != null)
					_subtrie[i].getAllWords(wordList, stub);
			}
		}
		
		/**
		 * Adds to the wordList all words that begin with the specified letters.
		 * @param wordList The List to which valid words are added.
		 * @param initial The first letters of the words to be found.
		 * @param stub A string representing the word formed by the path of parent nodes.
		 */
		public void getWords(List<String> wordList, String initial, String stub) {
			if (initial.equals("")) {
				this.getAllWords(wordList, stub);
			}
			else {
				stub += _datum;
				int index = (int)(Character.toUpperCase(initial.charAt(0))) - ASCII_MOD;
				if (_subtrie[index] == null) {
					return;
				}
				_subtrie[index].getWords(wordList, initial.substring(1), stub);
			}
		}
		
	}
}
Implementation
Code:
package codecall.net;

import java.io.BufferedInputStream;
import java.io.DataInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;

/**
 * Checks validation of submitted words.
 */
public class Dictionary {

	/**
	 * Takes the List of words provided and has them checked by calling the check method. If check determines it is not a word, IllegalWordException is thrown.
	 * 
	 * @param wordList The list of words that a player has created with the tiles they have added on a certain turn.
	 * @throws IllegalWordException
	 */
	public static void checkAll(ArrayList<Word> wordList, Trie dictionary) throws IllegalWordException{
		Iterator<Word> iter = wordList.iterator();
		while(iter.hasNext()){
			String temp = iter.next().toString();
			if(!dictionary.isWord(temp)){
				throw new IllegalWordException(temp + " is not a valid word.");
			}
		}
	}

	
	/**
	 * Adds all the words in the given file path to the given Trie dictionary.
	 * @param dictionary the Trie into which the words will be added
	 * @param path the path of the file containing the word list
	 */
	@SuppressWarnings("deprecation")
	public static void initializeDictionary(Trie dictionary, String path) {
		File f = new File(path);
		try {
			FileInputStream fis = new FileInputStream(f);
			BufferedInputStream bis = new BufferedInputStream(fis);
			DataInputStream dis = new DataInputStream(bis);
			while(dis.available() != 0){
				//
				dictionary.addWord(dis.readLine());
			}
			fis.close();
			bis.close();
			dis.close();
		} catch (FileNotFoundException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

}

Last edited by John; 06-12-2007 at 03:38 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 06-13-2007, 07:23 PM
programmer 101 programmer 101 is offline
Newbie
 
Join Date: Jun 2007
Posts: 4
Credits: 0
Rep Power: 0
programmer 101 is on a distinguished road
Default

i tried to compile, it compiles no error but doesnt run... i need a main.. but what should i put there.. sorry im a bit nooby..

thanks for the help so far though!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
  #6 (permalink)  
Old 06-13-2007, 09:33 PM
John's Avatar   
John John is offline
Co-Administrator
 
Join Date: Jul 2006
Age: 19
Posts: 3,205
Last Blog:
Passwords
Credits: 842
Rep Power: 20
John has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud of
Send a message via AIM to John
Default

I provided you with two classes. One an ADT (abstract data type) [Trie] and another [Dictionary] which is the implementation of the Trie. You simply need to instantiate the objects, call the proper methods, and pass in the correct arguments which are nicely documented in the source code. You shouldn't need to write more than 10 lines of code to fully integrate it.

After you spend several hours understanding every line of code in the above snippets you should have no problem implementing it, if not - then I will have sympathy and help you further.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 06-14-2007, 02:20 PM
programmer 101 programmer 101 is offline
Newbie
 
Join Date: Jun 2007
Posts: 4
Credits: 0
Rep Power: 0
programmer 101 is on a distinguished road
Default

um sorry to be noobish, but i might need help with the classes ... this is a new subject to me.. i wasnt in class for the past few weeks nd its comming to the end of the year...

Can you please help me!?! thanks so much
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 06-14-2007, 04:20 PM
John's Avatar   
John John is offline
Co-Administrator
 
Join Date: Jul 2006
Age: 19
Posts: 3,205
Last Blog:
Passwords
Credits: 842
Rep Power: 20
John has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud ofJohn has much to be proud of
Send a message via AIM to John
Default

Sure I will help you, but I will not do it for you. If you ask a specific question other than saying you are a noob and dont know what you are doing -- I would love to help you.

Have you looked over the code I gave you yet? What arent you sure about?
Have you found a dictionary file yet?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 06-27-2007, 11:22 AM
kajal88 kajal88 is offline
Newbie
 
Join Date: Jun 2007
Posts: 2
Credits: 0
Rep Power: 0
kajal88 is on a distinguished road
Default

thanks for all the info
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 07-01-2007, 01:39 PM
brian brian is offline
Newbie
 
Join Date: Jun 2007
Posts: 13
Credits: 0
Rep Power: 0
brian is on a distinguished road
Default

Ok, well I went through and completed the code given above, seeing as it didn't seem complete, and didn't look like it would run.

Here are the files along with the code:

File: Dictionary.java
Code:
package codecall.net;

import java.io.BufferedInputStream;
import java.io.DataInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;

/**
 * Checks validation of submitted words.
 */
public class Dictionary {

	/**
	 * Takes the List of words provided and has them checked by calling the check method. If check determines it is not a word, IllegalWordException is thrown.
	 * 
	 * @param wordList The list of words that a player has created with the tiles they have added on a certain turn.
	 * @throws IllegalWordException
	 */
	public static void checkAll(ArrayList<Word> wordList, Trie dictionary) throws IllegalWordException{
		Iterator<Word> iter = wordList.iterator();
		while(iter.hasNext()){
			String temp = iter.next().toString();
			if(!dictionary.isWord(temp)){
				throw new IllegalWordException(temp + " is not a valid word.");
			}
		}
	}

	
	/**
	 * Adds all the words in the given file path to the given Trie dictionary.
	 * @param dictionary the Trie into which the words will be added
	 * @param path the path of the file containing the word list
	 */
	@SuppressWarnings("deprecation")
	public static void initializeDictionary(Trie dictionary, String path) {
		File f = new File(path);
		try {
			FileInputStream fis = new FileInputStream(f);
			BufferedInputStream bis = new BufferedInputStream(fis);
			DataInputStream dis = new DataInputStream(bis);
			while(dis.available() != 0){
				//
				dictionary.addWord(dis.readLine());
			}
			fis.close();
			bis.close();
			dis.close();
		} catch (FileNotFoundException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

}
File: Driver.java
Code:
/*
 * Driver.java
 *
 * Created on July 1, 2007, 1:10 PM
 *
 */

package codecall.net;

import java.util.ArrayList;

/**
 *
 * @author brian
 */
public class Driver 
{
    
    /** Creates a new instance of Driver */
    public Driver() 
    {
        
    }
     public static void main (String args[])
     {
        
        Trie dictionary = new Trie (); // creates a new Trie object
        String path = "dictionary.txt"; //the path to your dictionary file
        
        Dictionary.initializeDictionary(dictionary,path); // initialize the dictionary
        
        ArrayList<Word> wordList = new ArrayList();
        
        wordList.add(new Word("test")); // replace test with your word, or add more lines with wordList.add with additional words
        
        try
        {
            Dictionary.checkAll(wordList,dictionary);
        }
        catch (IllegalWordException ilwe)
        {
            System.out.println("Oops: " + ilwe); // the word wasn't found'
        }

        System.out.println("All Done!");
    }
    
}
File: IllegalWordException.java
Code:
/*
 * IllegalWordException.java
 *
 * Created on July 1, 2007, 1:10 PM
 *
 */
package codecall.net;

/**
 *
 * @author brian
 */
public class IllegalWordException extends java.lang.Exception
{
    public  IllegalWordException ( )
    {
        super ( "Not A Valid Word" );
    }
    
    public IllegalWordException (String exceptionText)
    {
        super (exceptionText);
    }
    
}
File: Trie.java
Code:
package codecall.net;

import java.util.ArrayList;
import java.util.List;

/**
 * Provides a trie structure for an implementation of a dictionary. Since words 
 * never need to be removed from a dictionary during play, there is no option in 
 * this trie to remove a word.
 *
 * 
 *
 * Created on: Apr 13, 2006
 *
 */
public class Trie {
	
	private TrieRecursive[] _trie = new TrieRecursive[26];
	
	//	is the ASCII value of 'A'. When subtracted from a char's value, will provide the char's index value.
	private static final int ASCII_MOD = 65;

	/**
	 * Creates a new Trie structure, base case, which contains no datum, but only contains 
	 * 26 references to recursive trie structures.
	 */
	public Trie() {
	}
	
	/**
	 * Adds the given word into the trie structure.
	 * @param word The word to be added to the trie.
	 * @return true if the word was successfully added.
	 */
	public boolean addWord(String word) {
		if ((word.equals(""))||(!Character.isLetter(word.charAt(0)))) {
			return false;
		}
		
		char firstLetter = Character.toUpperCase(word.charAt(0));
		int index = (int)firstLetter - ASCII_MOD;
		
		if (_trie[index] == null) {
			_trie[index] = new TrieRecursive(firstLetter);
		}
		return _trie[index].addWord(word.substring(1));
		
	}
	
	/**
	 * Checks to see if the given word is in the trie.
	 * @param word The word to be checked.
	 * @return true if the word is in the trie.
	 */
	public boolean isWord(String word) {
		if ((word.equals(""))||(!Character.isLetter(word.charAt(0)))) {
			return false;
		}
		
		int index = (int)(Character.toUpperCase(word.charAt(0))) - ASCII_MOD;
		if (_trie[index] == null) {
			return false;
		}
		return _trie[index].isWord(word.substring(1));
		
	}
	
	/**
	 * Returns an ArrayList containing all words that are stored in the trie.<br><br>
	 * 
	 * An equivalent method can be performed by calling <tt>getWords("");</tt>
	 * @return All words, in the form of an ArrayList<String>.
	 */
	public List<String> getAllWords() {
		List<String> wordList = new ArrayList<String>();
		
		for (int i = 0; i < 26; i++) {
			if (_trie[i] != null)
				_trie[i].getAllWords(wordList, "");
		}
		
		return wordList;
	}
	
	/**
	 * Returns an ArrayList containing all words stored in the trie that begin with the specified letters.
	 * @param initial The first letters of the words to be found.
	 * @return All words beginning with the specified letters, in the form of an ArrayList<String>.
	 */
	public List<String> getWords(String initial) {
		List<String> wordList = new ArrayList<String>();
		
		if (initial.equals("")) {
			for (int i = 0; i < 26; i++) {
				if (_trie[i] != null)
					_trie[i].getWords(wordList, initial, "");
			}
		}
		else if (Character.isLetter(initial.charAt(0))) {
			int index = (int)(Character.toUpperCase(initial.charAt(0))) - ASCII_MOD;
			if (_trie[index] != null) {
				_trie[index].getWords(wordList, initial.substring(1), "");
			}
		}
		
		return wordList;
	}
	
	/**
	 * The recursive structure of the Trie superclass.
	 *
	 * @author Team S
	 *
	 * Created on: Apr 13, 2007
	 *
	 */
	private class TrieRecursive {
		private char _datum;
		private boolean _isEndOfWord = false;
		private TrieRecursive[] _subtrie = new TrieRecursive[26];
		
		/**
		 * Creates a new recursive Trie object. Each object contains a datum and
		 * an array of 26 potential subTries. 
		 * @param c The char representation of the Trie object.
		 */
		public TrieRecursive(char c) {
			_datum = c;
		}
		
		/**
		 * Adds the given word into the trie structure.
		 * @param word The word to be added to the trie.
		 * @return true if the word was successfully added.
		 */
		public boolean addWord(String word) {
			if (word.equals("")) {
				if (_isEndOfWord)
					return false;
				_isEndOfWord = true;
				return true;
			}
			if ( !Character.isLetter( word.charAt(0) )) {
				return false;
			}
			
			char firstLetter = Character.toUpperCase(word.charAt(0));
			int index = (int)firstLetter - ASCII_MOD;
			
			if (_subtrie[index] == null) {
				_subtrie[index] = new TrieRecursive(firstLetter);
			}
			return _subtrie[index].addWord(word.substring(1));
			
		}
		
		/**
		 * Checks to see if the given word is in the trie.
		 * @param word The word to be checked.
		 * @return true if the word is in the trie.
		 */
		public boolean isWord(String word) {
			if (word.equals("")) {
				return _isEndOfWord;
			}
			if ( !Character.isLetter( word.charAt(0) )) {
				return false;
			}
			
			int index = (int)(Character.toUpperCase(word.charAt(0))) - ASCII_MOD;
			if (_subtrie[index] == null) {
				return false;
			}
			return _subtrie[index].isWord(word.substring(1));
		}
		
		/**
		 * If a word ends at this level, adds the word to the wordList. Then, calls 
		 * this method on all the subTries.
		 * @param wordList The List to which valid words are added.
		 * @param stub A string representing the word formed by the path of parent nodes.
		 */
		public void getAllWords(List<String> wordList, String stub) {
			stub += _datum;
			if (_isEndOfWord) 
				wordList.add(stub);
			
			for (int i = 0; i < 26; i++) {
				if (_subtrie[i] != null)
					_subtrie[i].getAllWords(wordList, stub);
			}
		}
		
		/**
		 * Adds to the wordList all words that begin with the specified letters.
		 * @param wordList The List to which valid words are added.
		 * @param initial The first letters of the words to be found.
		 * @param stub A string representing the word formed by the path of parent nodes.
		 */
		public void getWords(List<String> wordList, String initial, String stub) {
			if (initial.equals("")) {
				this.getAllWords(wordList, stub);
			}
			else {
				stub += _datum;
				int index = (int)(Character.toUpperCase(initial.charAt(0))) - ASCII_MOD;
				if (_subtrie[index] == null) {
					return;
				}
				_subtrie[index].getWords(wordList, initial.substring(1), stub);
			}
		}
		
	}
}
File: Word.java
Code:
/*
 * Word.java
 *
 * Created on July 1, 2007, 1:10 PM
 *
 */

package codecall.net;

/**
 *
 * @author brian
 */
public class Word
{
    private String myWord;
    
    public Word ()
    {
        myWord = "";
    }
    
    public Word (String word)
    {
        myWord = word;
    }
    
    public String toString ()
    {
        return myWord;
    }
}
I left the two classes given above alone, and simply created the other ones. And I didn't have a dictionary file to test this on, so I am not 100% sure if it works or not.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Best program for SQL database manipulation Rhadamanthys Database & Database Programming 3 07-02-2007 02:32 PM
How do I Program another Program? ! bosco General Programming 1 06-15-2007 11:15 AM
Need help w/ word count program (ASAP) siren C and C++ 1 04-23-2007 08:14 AM
How to modify a program written in .NET 2.0? jackyjack C# Programming 7 03-27-2007 12:26 PM


All times are GMT -5. The time now is 04:53 AM.

Contest Stats

Xav ........ 1024.41
MeTh0Dz|Reb0rn ........ 974.08
morefood2001 ........ 850.04
John ........ 841.93
WingedPanther ........ 661.52
marwex89 ........ 575.59
Brandon W ........ 456.18
chili5 ........ 292.12
orjan ........ 187.41
Steve.L ........ 181.88

Contest Rules

CodeCall Goal

Goal: 100,000 Posts
Complete: 79%

Ads