Finding pairs
Constructed from memory... I hope it resembles what we did...
Reversing an array...
(Thank you for sending me these!!)In place
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class reversereverse { | |
public static void main(String[] args){ | |
int[] data = {1, 2, 3, 4, 5, 6, 7, 8, 9}; | |
for (int i = 0; i<data.length/2; i++){ | |
int a = data[i]; | |
data[i] = data[data.length - i - 1]; | |
data[data.length - i - 1] = a; | |
} | |
System.out.println(java.util.Arrays.toString(data)); | |
} | |
} |
As a copy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class reverseagain { | |
public static void main(String[] args){ | |
int[] data = {1, 2, 3, 4, 5}; | |
System.out.println(java.util.Arrays.toString(data)); | |
int[] newData = new int[data.length]; | |
System.out.println(java.util.Arrays.toString(newData)); | |
for(int i=0; i<data.length; i++){ | |
newData[i] = data[data.length - i -1]; | |
System.out.println(java.util.Arrays.toString(newData)); | |
} | |
System.out.println(java.util.Arrays.toString(newData)); | |
} | |
} |
Some cellular automaton thing
That we didn't really finish... so don't worry about what it means :)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Cells { | |
public static void main(String[] args) { | |
int[] data = { 0, 1, 1, 0, 1, 0 }; | |
System.out.println(java.util.Arrays.toString(data)); | |
int[] data2 = new int[data.length]; | |
for (int i=0; i<data.length; i++) { | |
if (data[i] == 1) { | |
data2[i] = 0; | |
} | |
else { | |
data2[i] = 1; | |
} | |
} | |
System.out.println(java.util.Arrays.toString(data2)); | |
} | |
} | |