java-21.중흥 면접 문 제 는 두 개의 정수 n 과 m 를 입력 하고 수열 1,2,3.
3095 단어 자바
import java.util.ArrayList;
import java.util.List;
import java.util.Stack;
public class CombinationToSum {
/*
21
2010
:
n m , 1 , 2 , 3.......n ,
m , .
* two solutions
* permutation01:Recursion.easy to write and read-->pick n or not,haha
* permutation02:put n,then put n-1...if bigger,remove;if smaller,keep putting;if ok,output.
*/
public static void main(String[] args) {
CombinationToSum cts=new CombinationToSum();
//permutation01(int sum,int n)
cts.permutation01(10,10);
System.out.println("===========");
cts.permutation02(10,6);
}
/*Recursion.use Stack<Integer>
we can use ArrayList,too.
private List<Integer> list=new ArrayList<Integer>();
list.add(n);
list.remove(list.indexOf(n));
*/
private Stack<Integer> stack=new Stack<Integer>();
public void permutation01(int sum,int n){
if(n<=0||sum<=0)return;
if(sum==n){
printStack(stack);
System.out.print(n);
System.out.println();
}
stack.add(n);
permutation01(sum-n,n-1);
stack.pop();
permutation01(sum,n-1);
}
public void permutation02(int sum, int n) {
if(n<=0||sum<=0)return;
for (int i = n; i > 0; i--) {
if (i == sum) {
System.out.println(i);
continue;
}
List<Integer> list = new ArrayList<Integer>();
list.add(i);
for (int j = i - 1; j > 0;) {
list.add(j);
int ret = isOK(list, sum);
if (ret < 0) {
j--;
}
if (ret == 0) {
printList(list);
System.out.println();
j = list.get(1) - 1;//now we go back and make the second element smaller
list.clear();
list.add(i);
}
if (ret > 0) {
list.remove(list.size()-1);//too large,remove the last element
j--;
}
}
}
}
// whether the sum of list element equals to sum or not
public static int isOK(List<Integer> list, int sum) {
int re = 0;
int total = 0;
for (int each : list) {
total += each;
}
if (total > sum)
re = 1;
if (total < sum)
re = -1;
return re;
}
public void printStack(Stack<Integer> stack){
/*
while(!stack.isEmpty()){
int temp=stack.pop();
System.out.print(temp+" ");
}
*/
//don't remove the elements in stack
for(Integer each:stack){
System.out.print(each+" ");
}
}
public void printList(List<Integer> list) {
for (int each : list) {
System.out.print(each + " ");
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.