&
运算获取 x
某一比特位的值
x&1 获取最后一位 x>>1 右移一位
private static final int[] DX = {0, 0, 1, -1, 1, 1, -1, -1};
private static final int[] DY = {1, -1, 0, 0, 1, -1, 1, -1};
-
求集合所有子集的问题,非常适合二进制位的解法。
public static List<List<Integer>> binaryBit(int[] nums) { List<List<Integer>> res = new ArrayList<List<Integer>>(); /* 四个数的子集数目 ==二进制数0-1111的个数 ==10000代表的数值 */ for (int i = 0; i < (1 << nums.length); i++) { List<Integer> sub = new ArrayList<Integer>(); //遍历每个数字,其中二进制为1的数位代表该位上的数字被选中,记录下来 for (int j = 0; j < nums.length; j++) if (((i >> j) & 1) == 1) sub.add(nums[j]); res.add(sub); } return res; }
-
适合三指针的方法,固定一位,剩余开始剪枝遍历。
-
int数组排序
Arrays.sort(nums)
-
String->字符数组 new ArrayList<>(Arrays.asList("abc".split("")))
-
int数组转为list
List list = Arrays.stream(nums).boxed().collect(Collectors.toList());
-
hashmap累计数值
当name不存在时设置key的值为1,当name的值存在时,将值加1赋给name
map.merge("key", 1, (oldValue, newValue) -> oldValue + newValue);
-
hashMap list为key时,值一样,则为同一个list