> 0 1 2 3 4 5 6 7 ..... 25
> 1 2 3 4 5 6 7 8.... 25 0
[quoted text clipped - 5 lines]
> .. ..
> 25 0 1 2 3 4 5.... 24
> anybody know how to generate this algorithm in java, please help.

Signature
[ don't email me support questions or followups ]
g o r d o n + n e w s @ b a l d e r 1 3 . s e
> > 0 1 2 3 4 5 6 7 ..... 25
> > 1 2 3 4 5 6 7 8.... 25 0
[quoted text clipped - 26 lines]
> [ don't email me support questions or followups ]
> g o r d o n + n e w s @ b a l d e r 1 3 . s e
i see that, but i want to generate a two dimensional array for a
reason, how would i do it?
i mean it would be nice for you to write the algorithm down, rather
than telling me what to do, because i wanted that 2d array for reason
offset is by 1 to the left each time time, yeah i see that, how would
you write the acutal algorithm, sorry, i guess i just need to see some
code
to understand it
Ian Wilson - 08 Feb 2007 10:25 GMT
>>>0 1 2 3 4 5 6 7 ..... 25
>>>1 2 3 4 5 6 7 8.... 25 0
[quoted text clipped - 23 lines]
> i see that, but i want to generate a two dimensional array for a
> reason, how would i do it?
Most programming is done by thinking about the problem, breaking it down into
smaller pieces until you have a small enough piece that you can work on.
> i mean it would be nice for you to write the algorithm down,
This is one of those "give a fish" or "teach to fish" situations. Your question
is so elementary that if you are not willing to try and think about it a little
yourself then you are unlikely to ever get much further.
First reduce the problem to generating the first line in a one dimensional
array. Once you have done that it will be a lot easier to see how to extend it
to a two dimensional array.
Here's a start:
Class Vigenere {
public static void main(String[] args) {
int index = 0;
// Do something here that increments index in a loop until it reaches 25
int value = index;
System.out.println(index+": "+value);
// close the loop mentioned above
}
}
I haven't tried the above, type it in and get it working.
Then replace my comments with the appropriate Java statements.
Once you have that working, work out how to declare an array of integers and
replace the println with a statement that assigns a value to an element of an array.
Then try thinking about adding another loop corresponding to the other dimension
of your array. Think about your "offset" and how it could be applied to the
calculation of the value.
At each step you will have a working program that shows successful completion of
a small part of the problem.
Gordon Beaton - 08 Feb 2007 10:34 GMT
> i mean it would be nice for you to write the algorithm down, rather
> than telling me what to do, because i wanted that 2d array for reason
I wasn't "telling you what to do" at all. I simply asked some leading
questions to help you help yourself. This is extremely basic stuff.
/gordon
"Build a man a fire and he'll be warm for a day. Set a man on fire and
he'll be warm for the rest of his life." -- Terry Pratchett

Signature
[ don't email me support questions or followups ]
g o r d o n + n e w s @ b a l d e r 1 3 . s e
spidey12345 - 08 Feb 2007 11:45 GMT
Thanks guys, i got it to work, would this be efficient, how would i
make this code better
public class test {
public static void main (String[] args)
{
int twoarray[][] = new int[26][26];
int offset = 0;
for(int i = 0; i<26; i++)
{
for(int j = 0; j<26; j++)
{
int value;
value = j +offset;
if(value > 25)
value = value - 26;
twoarray[i][j] = value;
}
offset++;
}
for(int i = 0; i <26; i++)
{
for(int j = 0; j <26; j++)
{
System.out.print(twoarray[i][j]);
System.out.print(" ");
}
System.out.println();
}
}
}
Thomas Fritsch - 08 Feb 2007 12:23 GMT
> Thanks guys, i got it to work, would this be efficient, how would i
> make this code better
[quoted text clipped - 7 lines]
> for(int i = 0; i<26; i++)
> {
[...]
> }
Your code already looks very efficient to me. Therefore I would not
bother to make it faster.
However, I have one suggestion not concerning efficiency, but concerning
style. There are many so-called "magic" numbers (26 or 25) all over the
place. You can get around this for example by defining a constant
final static int N = 26;
and then using that N instead of 26 (and N-1 instead of 25) in your code.

Signature
Thomas