Java
Posted on
October 31st, 2008 0 Comments
This is a very simple demonstration of linked list in java programming language. Very nice and well commented java source code for beginners. User can “get” and “set” the list items as well as traverse through “previous” and “next ” items. This java program can create a linked list using one object or an array of...
Read More |
Make a Comment
Posted on
October 30th, 2008 0 Comments
An object of type IntStack is a stack of real numbers, with the standard stack operations push(int N), pop(), and isEmpty(). A makeEmpty() operation is also provided to remove all items from the stack.
Internally, the stack is implemented as a linked list.
/*******************************************************
* MYCPLUS Sample Code - http://www.mycplus.com...
Read More |
Make a Comment
Posted on
September 28th, 2008 0 Comments
This java code basically implements stack functionality. It can Pop and Push an item in stack with the help of array. The item can only be an integer number and inernally the java program uses arrays to maintain items in stack.
/*******************************************************
* MYCPLUS Sample Code - http://www.mycplus.com *
* ...
Read More |
Make a Comment
Posted on
September 13th, 2008 0 Comments
A small java program to show photo on JPanel. User can select any image file from the hard drive and show on the frame. Image file can be jpg, gif, bmp or any other supported graphics file.
/*******************************************************
* MYCPLUS Sample Code - http://www.mycplus.com *
* ...
Read More |
Make a Comment
Posted on
September 9th, 2008 1 Comment
Set up a Server that will receive packets from a client and send packets to a client. Also set up a Client that will send packets to a server and receive packets from a server.
/*******************************************************
* MYCPLUS Sample Code - http://www.mycplus.com *
* *
* This code...
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
A component that acts as a simple stop-watch. When the user clicks on it, this componet starts timing. When the user clicks again, it displays the time between the two clicks. Clicking a third time starts another timer, etc. While it is timing, the label just displays the message “Timing….”.
/*******************************************************
*...
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
his program lets the user play HighLow, a simple card game that is described in the output statements at the beginning of the main() routine. After the user plays several games, the user’s average score is reported.
/*******************************************************
* MYCPLUS Sample Code - http://www.mycplus.com *
* ...
Read More |
Make a Comment
Posted on
September 9th, 2008 0 Comments
Bank Operation demo that uses Bank, Clerk and Account and Transaction objects to complete the operation. Actually this demo shows how you can use threads to perform the tasks intheir own capicity and utilise the maximum system resopurces. What we do is, we have two clerks and they will do the work seperately from each other hence they will work faster using threads....
Read More |
Make a Comment