Forum: Java Jun 3rd, 2009 |
| Replies: 11 Views: 506 A simple solution:
int draw()
{
int pat[7][7] = { 1, 0, 0, 0, 0, 0, 1,
0, 1, 0, 0, 0, 1, 0,
0, 0, 1, 0, 1, 0, 0,
0, 0,... |
Forum: Java May 23rd, 2009 |
| Replies: 4 Views: 377 Where are you adding first node (head)?
If addValue() is suppose to add new nodes then head should also be added in this function. But it seems you are adding is manually something like this:
... |
Forum: Java Jul 10th, 2008 |
| Replies: 3 Views: 1,027 |