classSolution { publicintthreeSumMulti(int[] arr, int target) { //enumberate every element and put them into the map HashMap<Integer, Long> map = newHashMap<Integer, Long>(); longcount=0; for ( int num : arr ){ if (!map.containsKey(num)){ map.put(num, (long)1); } else{ map.put(num, map.get(num)+1); } } //traverse whole elements and select three numbers for ( int a : map.keySet() ){ longtotalA= map.get(a); for (int b : map.keySet()){ longtotalB= map.get(b); if ( a == b ){ if (totalB < 2){ continue; } totalB = totalB - 1; }
intc= target - a - b; if ( map.containsKey(c) ){ longtotalC= map.get(c); longtotal=0; if ( a == b && b == c ){ total = totalA * totalB * ( totalC - 2 ) ; } elseif ( b == c || a == c ){ total = totalA * totalB * ( totalC - 1 ) ; } else{ total = totalA * totalB * totalC; } if ( total > 0 ){ count += total; }
问题 You are given an integer array height of length n. There are n vertical lines drawn such that the two endpoints of the ith line are (i, 0) and (i, height[i]). Find two lines that together with the x-axis form a container, such that the container contains the most water. Return the maximum amount of water a container can store. Notice that you may not slant the container.
问题描述 Given a 1-indexed array of integers numbers that is already sorted in non-decreasing order, find two numbers such that they add up to a specific target number. Let these two numbers be numbers[index1] and numbers[index2] where 1 <= index1 < index2 <= numbers.length.
Return the indices of the two numbers, index1 and index2, added by one as an integer array [index1, index2] of length 2.
The tests are generated such that there is exactly one solution. You may not use the same element twice.
A permutation of an array of integers is an arrangement of its members into a sequence or linear order.
For example, for arr = [1,2,3], the following are considered permutations of arr: [1,2,3], [1,3,2], [3,1,2], [2,3,1].
The next permutation of an array of integers is the next lexicographically greater permutation of its integer. More formally, if all the permutations of the array are sorted in one container according to their lexicographical order, then the next permutation of that array is the permutation that follows it in the sorted container. If such arrangement is not possible, the array must be rearranged as the lowest possible order (i.e., sorted in ascending order).
For example, the next permutation of arr = [1,2,3] is [1,3,2]. Similarly, the next permutation of arr = [2,3,1] is [3,1,2]. While the next permutation of arr = [3,2,1] is [1,2,3] because [3,2,1] does not have a lexicographical larger rearrangement. Given an array of integers nums, find the next permutation of nums.
The replacement must be in place and use only constant extra memory.
classSolution { publicvoidrotate(int[] nums, int k) { if (k != 0){ intm= gcd(nums.length,k); for (intn=0; n < m; n++ ) { inti= n + k; i %= nums.length;
inttemp= nums[n]; while( true ){ inttempI= nums[i]; nums[i] = temp; temp = tempI; i += k; i %= nums.length; if (i == n){ nums[n] = temp; break; } } } } } privateintgcd(int a, int b){ intmax= a; intmin= b; if (max == min){ return min; } if ( a < b ){ max = b; min = a; } return gcd(max - min, min); } }