摘要:
1. For Integer,you can consider the following: *2 ≡ <<1 /2≡>>1 %2 ≡ &12.Generate anon-repeating numbers random arrayranging from 1-50 int[] result = new int[50]; ArrayList<Integer> numPool = new ArrayList<Integer>(); for (int i = 0; i < 50; i++) { numPool.add(i); ... 阅读全文