1
2
3
4
public static int[] zigzagify(int[] array, int xmax, int ymax) {
        int[] zz = new int[array.length]; //zigzag array
        if (array.length != xmax * ymax) {
...

Java Zig Zag ordering of array

by kane77, August 19, 2008 21:27, 3 refactorings, tagged with array, zigzag, ordering

This is the code that is su...

Eee5491d255814140670a5937d53aef3 Talk