JAVA经典算法

来源:互联网 发布:seo基础入门书籍 编辑:程序博客网 时间:2024/06/17 16:01
有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第四个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?     
  1. 1.程序分析:   兔子的规律为数列1,1,2,3,5,8,13,21....     
  2. public class exp2{  
  3.     public static void main(String args[]){  
  4.         int i=0;  
  5.         for(i=1;i<=20;i++)  
  6.             System.out.println(f(i));  
  7.     }  
  8.     public static int f(int x)  
  9.     {  
  10.         if(x==1 || x==2)  
  11.             return 1;  
  12.         else  
  13.             return f(x-1)+f(x-2);  
  14.     }  
  15. }  
  16. 或  
  17. public class exp2{  
  18.     public static void main(String args[]){  
  19.         int i=0;  
  20.         math mymath = new math();  
  21.         for(i=1;i<=20;i++)  
  22.             System.out.println(mymath.f(i));  
  23.     }  
  24.   
  25. }  
  26. class math  
  27. {  
  28.     public int f(int x)  
  29.     {  
  30.         if(x==1 || x==2)  
  31.             return 1;  
  32.         else  
  33.             return f(x-1)+f(x-2);  
  34.     }  
  35. }  
  36.   
  37.   题目:判断101-200之间有多少个素数,并输出所有素数。     
  38. 1.程序分析:判断素数的方法:用一个数分别去除2到sqrt(这个数),如果能被整除,     
  39. 则表明此数不是素数,反之是素数。     
  40. public class exp2{  
  41.     public static void main(String args[]){  
  42.         int i=0;  
  43.         math mymath = new math();  
  44.         for(i=2;i<=200;i++)  
  45.             if(mymath.iszhishu(i)==true)  
  46.             System.out.println(i);  
  47.     }  
  48. }  
  49. class math  
  50. {  
  51.     public int f(int x)  
  52.     {  
  53.         if(x==1 || x==2)  
  54.             return 1;  
  55.         else  
  56.             return f(x-1)+f(x-2);  
  57.     }  
  58.     public boolean iszhishu(int x)  
  59.     {  
  60.         for(int i=2;i<=x/2;i++)  
  61.             if (x % 2==0 )  
  62.                 return false;  
  63.         return true;  
  64.     }  
  65. }  
  66.   
  67. 【程序3】   题目:打印出所有的 "水仙花数 ",所谓 "水仙花数 "是指一个三位数,其各位数字立方和等于该数本身。例如:153是一个 "水仙花数 ",因为153=1的三次方+5的三次方+3的三次方。     
  68. 1.程序分析:利用for循环控制100-999个数,每个数分解出个位,十位,百位。     
  69. public class exp2{  
  70.     public static void main(String args[]){  
  71.         int i=0;  
  72.         math mymath = new math();  
  73.         for(i=100;i<=999;i++)  
  74.             if(mymath.shuixianhua(i)==true)  
  75.             System.out.println(i);  
  76.     }  
  77. }  
  78. class math  
  79. {  
  80.     public int f(int x)  
  81.     {  
  82.         if(x==1 || x==2)  
  83.             return 1;  
  84.         else  
  85.             return f(x-1)+f(x-2);  
  86.     }  
  87.     public boolean iszhishu(int x)  
  88.     {  
  89.         for(int i=2;i<=x/2;i++)  
  90.             if (x % i==0 )  
  91.                 return false;  
  92.         return true;  
  93.     }  
  94.     public boolean shuixianhua(int x)  
  95.     {  
  96.        int i=0,j=0,k=0;  
  97.        i=x / 100;  
  98.        j=(x % 100) /10;  
  99.        k=x % 10;  
  100.        if(x==i*i*i+j*j*j+k*k*k)  
  101.            return true;  
  102.        else  
  103.            return false;  
  104.          
  105.     }  
  106. }  
  107. 【程序4】   题目:将一个正整数分解质因数。例如:输入90,打印出90=2*3*3*5。     
  108. 程序分析:对n进行分解质因数,应先找到一个最小的质数k,然后按下述步骤完成:     
  109. (1)如果这个质数恰等于n,则说明分解质因数的过程已经结束,打印出即可。     
  110. (2)如果n <> k,但n能被k整除,则应打印出k的值,并用n除以k的商,作为新的正整数你,重复执行第一步。     
  111. (3)如果n不能被k整除,则用k+1作为k的值,重复执行第一步。     
  112. public class exp2{  
  113.     public exp2(){}  
  114.     public void fengjie(int n){  
  115.         for(int i=2;i<=n/2;i++){  
  116.             if(n%i==0){  
  117.                 System.out.print(i+"*");  
  118.                 fengjie(n/i);  
  119.                 }  
  120.         }  
  121.         System.out.print(n);  
  122.         System.exit(0);///不能少这句,否则结果会出错  
  123.         }  
  124.         public static void main(String[] args){  
  125.              String str="";  
  126.              exp2 c=new exp2();  
  127.              str=javax.swing.JOptionPane.showInputDialog("请输入N的值(输入exit退出):");  
  128.              int N;  
  129.              N=0;  
  130.              try{  
  131.                      N=Integer.parseInt(str);  
  132.                      }catch(NumberFormatException e){  
  133.                          e.printStackTrace();  
  134.                          }  
  135.             System.out.print(N+"分解质因数:"+N+"=");  
  136.             c.fengjie(N);  
  137.         }      
  138. }  
  139. 【程序5】   题目:利用条件运算符的嵌套来完成此题:学习成绩> =90分的同学用A表示,60-89分之间的用B表示,60分以下的用C表示。     
  140. 1.程序分析:(a> b)?a:b这是条件运算符的基本例子。     
  141. import javax.swing.*;  
  142. public class ex5 {  
  143.         public static void main(String[] args){  
  144.              String str="";  
  145.              str=JOptionPane.showInputDialog("请输入N的值(输入exit退出):");  
  146.              int N;  
  147.              N=0;  
  148.              try{  
  149.                 N=Integer.parseInt(str);  
  150.               }  
  151.              catch(NumberFormatException e){  
  152.                 e.printStackTrace();  
  153.                }  
  154.              str=(N>90?"A":(N>60?"B":"C"));  
  155.              System.out.println(str);  
  156.         }      
  157. }  
  158. 【程序6】   题目:输入两个正整数m和n,求其最大公约数和最小公倍数。     
  159. 1.程序分析:利用辗除法。     
  160. 最大公约数:  
  161. public class CommonDivisor{  
  162.     public static void main(String args[])  
  163.     {  
  164.         commonDivisor(24,32);  
  165.     }  
  166.     static int commonDivisor(int M, int N)  
  167.     {  
  168.         if(N<0||M<0)  
  169.         {  
  170.             System.out.println("ERROR!");  
  171.             return -1;  
  172.         }  
  173.         if(N==0)  
  174.         {  
  175.             System.out.println("the biggest common divisor is :"+M);  
  176.             return M;  
  177.         }  
  178.         return commonDivisor(N,M%N);  
  179.     }  
  180. }  
  181. 最小公倍数和最大公约数:  
  182. import java.util.Scanner;   
  183. public class CandC   
  184. {   
  185. //下面的方法是求出最大公约数  
  186. public static int gcd(int m, int n)   
  187. {   
  188. while (true)   
  189. {   
  190. if ((m = m % n) == 0)   
  191. return n;   
  192. if ((n = n % m) == 0)   
  193. return m;   
  194. }   
  195. }   
  196. public static void main(String args[]) throws Exception   
  197. {   
  198. //取得输入值  
  199. //Scanner chin = new Scanner(System.in);   
  200. //int a = chin.nextInt(), b = chin.nextInt();   
  201. int a=23int b=32;  
  202. int c = gcd(a, b);   
  203. System.out.println("最小公倍数:" + a * b / c + "\n最大公约数:" + c);   
  204. }   
  205. }  
  206. 【程序7】   题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。     
  207. 1.程序分析:利用while语句,条件为输入的字符不为 '\n '.     
  208. import java.util.Scanner;  
  209. public class ex7 {  
  210.      public static void main(String args[])  
  211.      {  
  212.       System.out.println("请输入字符串:");  
  213.       Scanner scan=new Scanner(System.in);  
  214.       String str=scan.next();  
  215.       String E1="[\u4e00-\u9fa5]";  
  216.       String E2="[a-zA-Z]";  
  217.       int countH=0;  
  218.       int countE=0;  
  219.       char[] arrChar=str.toCharArray();  
  220.       String[] arrStr=new String[arrChar.length];  
  221.       for (int i=0;i<arrChar.length ;i++ )  
  222.       {  
  223.        arrStr[i]=String.valueOf(arrChar[i]);  
  224.       }  
  225.       for (String i: arrStr )  
  226.       {  
  227.        if (i.matches(E1))  
  228.        {  
  229.         countH++;  
  230.        }  
  231.        if (i.matches(E2))  
  232.        {  
  233.         countE++;  
  234.        }  
  235.       }  
  236.       System.out.println("汉字的个数"+countH);  
  237.       System.out.println("字母的个数"+countE);  
  238.      }  
  239.     }   
  240. 【程序8】   题目:求s=a+aa+aaa+aaaa+aa...a的值,其中a是一个数字。例如2+22+222+2222+22222(此时共有5个数相加),几个数相加有键盘控制。     
  241. 1.程序分析:关键是计算出每一项的值。     
  242. import java.io.*;  
  243. public class Sumloop {  
  244.   public static void main(String[] args) throws IOException  
  245.   {  
  246.       int s=0;  
  247.       String output="";  
  248.       BufferedReader stadin = new BufferedReader(new InputStreamReader(System.in));  
  249.       System.out.println("请输入a的值");  
  250.       String input =stadin.readLine();  
  251.       for(int i =1;i<=Integer.parseInt(input);i++)  
  252.       {  
  253.           output+=input;  
  254.           int a=Integer.parseInt(output);  
  255.           s+=a;  
  256.       }  
  257.       System.out.println(s);  
  258.   }  
  259. }  
  260. 另解:  
  261. import java.io.*;  
  262. public class Sumloop {  
  263.   public static void main(String[] args) throws IOException  
  264.   {  
  265.       int s=0;  
  266.       int n;  
  267.       int t=0;  
  268.       BufferedReader stadin = new BufferedReader(new InputStreamReader(System.in));  
  269.       String input = stadin.readLine();  
  270.       n=Integer.parseInt(input);  
  271.       for(int i=1;i<=n;i++){  
  272.        t=t*10+n;  
  273.        s=s+t;  
  274.        System.out.println(t);  
  275.       }  
  276.       System.out.println(s);  
  277.      }  
  278. }  
  279. 【程序9】   题目:一个数如果恰好等于它的因子之和,这个数就称为 "完数 "。例如6=123.编程   找出1000以内的所有完数。     
  280. public class Wanshu {  
  281.  public static void main(String[] args)  
  282.  {  
  283.      int s;  
  284.      for(int i=1;i<=1000;i++)  
  285.      {  
  286.          s=0;  
  287.          for(int j=1;j<i;j++)  
  288.              if(i % j==0)  
  289.                  s=s+j;  
  290.             if(s==i)  
  291.                 System.out.print(i+" ");  
  292.      }  
  293.      System.out.println();  
  294.  }  
  295. }  
  296. 【程序10】 题目:一球从100米高度自由落下,每次落地后反跳回原高度的一半;再落下,求它在   第10次落地时,共经过多少米?第10次反弹多高?     
  297. public class Ex10 {  
  298.  public static void main(String[] args)  
  299.  {  
  300.      double s=0;  
  301.      double t=100;  
  302.      for(int i=1;i<=10;i++)  
  303.      {  
  304.          s+=t;  
  305.          t=t/2;  
  306.      }  
  307.      System.out.println(s);  
  308.      System.out.println(t);  
  309.        
  310.  }  
  311. }  
  312. 【程序11】   题目:有1234个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?     
  313. 1.程序分析:可填在百位、十位、个位的数字都是1234。组成所有的排列后再去   掉不满足条件的排列。     
  314. public class Wanshu {  
  315.  public static void main(String[] args)  
  316.  {  
  317.     int i=0;  
  318.     int j=0;  
  319.     int k=0;  
  320.     int t=0;  
  321.     for(i=1;i<=4;i++)  
  322.         for(j=1;j<=4;j++)  
  323.             for(k=1;k<=4;k++)  
  324.                 if(i!=j && j!=k && i!=k)  
  325.                 {t+=1;  
  326.                     System.out.println(i*100+j*10+k);  
  327.  }    
  328.     System.out.println (t);  
  329.     }  
  330. }  
  331. 【程序12】  题目:企业发放的奖金根据利润提成。利润(I)低于或等于10万元时,奖金可提10%;利润高于10万元,低于20万元时,低于10万元的部分按10%提成,高于10万元的部分,可可提成7.5%;20万到40万之间时,高于20万元的部分,可提成5%;40万到60万之间时高于40万元的部分,可提成3%;60万到100万之间时,高于60万元的部分,可提成1.5%,高于100万元时,超过100万元的部分按1%提成,从键盘输入当月利润I,求应发放奖金总数?     
  332. 1.程序分析:请利用数轴来分界,定位。注意定义时需把奖金定义成长整型。     
  333. import java .util.*;   
  334. public class test {  
  335.     public static void main (String[]args){   
  336.         double sum;//声明要储存的变量应发的奖金   
  337.         Scanner input =new Scanner (System.in);//导入扫描器   
  338.         System.out.print ("输入当月利润");   
  339.         double lirun=input .nextDouble();//从控制台录入利润   
  340.         if(lirun<=100000){   
  341.             sum=lirun*0.1;   
  342.         }else if (lirun<=200000){   
  343.             sum=10000+lirun*0.075;   
  344.         }else if (lirun<=400000){   
  345.             sum=17500+lirun*0.05;   
  346.         }else if (lirun<=600000){   
  347.             sum=lirun*0.03;   
  348.         }else if (lirun<=1000000){   
  349.             sum=lirun*0.015;   
  350.         } else{   
  351.             sum=lirun*0.01;   
  352.         }   
  353.         System.out.println("应发的奖金是"+sum);   
  354.         }   
  355. }  
  356. 后面其他情况的代码可以由读者自行完善.  
  357.   
  358. 【程序13】     
  359. 题目:一个整数,它加上100后是一个完全平方数,加上168又是一个完全平方数,请问该数是多少?     
  360. 1.程序分析:在10万以内判断,先将该数加上100后再开方,再将该数加上268后再开方,如果开方后的结果满足如下条件,即是结果。请看具体分析:     
  361. public class test {  
  362.     public static void main (String[]args){   
  363.     long k=0;  
  364.     for(k=1;k<=100000l;k++)  
  365.         if(Math.floor(Math.sqrt(k+100))==Math.sqrt(k+100) && Math.floor(Math.sqrt(k+168))==Math.sqrt(k+168))  
  366.             System.out.println(k);  
  367.     }  
  368. }  
  369. 【程序14】 题目:输入某年某月某日,判断这一天是这一年的第几天?     
  370. 1.程序分析:以35日为例,应该先把前两个月的加起来,然后再加上5天即本年的第几天,特殊情况,闰年且输入月份大于3时需考虑多加一天。     
  371. import java.util.*;  
  372. public class test {  
  373.     public static void main (String[]args){   
  374.         int day=0;  
  375.         int month=0;  
  376.         int year=0;  
  377.         int sum=0;  
  378.         int leap;     
  379.         System.out.print("请输入年,月,日\n");     
  380.         Scanner input = new Scanner(System.in);  
  381.         year=input.nextInt();  
  382.         month=input.nextInt();  
  383.         day=input.nextInt();  
  384.         switch(month) /*先计算某月以前月份的总天数*/    
  385.         {     
  386.         case 1:  
  387.             sum=0;break;     
  388.         case 2:  
  389.             sum=31;break;     
  390.         case 3:  
  391.             sum=59;break;     
  392.         case 4:  
  393.             sum=90;break;     
  394.         case 5:  
  395.             sum=120;break;     
  396.         case 6:  
  397.             sum=151;break;     
  398.         case 7:  
  399.             sum=181;break;     
  400.         case 8:  
  401.             sum=212;break;     
  402.         case 9:  
  403.             sum=243;break;     
  404.         case 10:  
  405.             sum=273;break;     
  406.         case 11:  
  407.             sum=304;break;     
  408.         case 12:  
  409.             sum=334;break;     
  410.         default:  
  411.             System.out.println("data error");break;  
  412.         }     
  413.         sum=sum+day; /*再加上某天的天数*/    
  414.         if(year%400==0||(year%4==0&&year%100!=0))/*判断是不是闰年*/    
  415.             leap=1;     
  416.         else    
  417.             leap=0;     
  418.         if(leap==1 && month>2)/*如果是闰年且月份大于2,总天数应该加一天*/    
  419.             sum++;     
  420.         System.out.println("It is the the day:"+sum);  
  421.         }  
  422. }  
  423. 【程序15】 题目:输入三个整数x,y,z,请把这三个数由小到大输出。     
  424. 1.程序分析:我们想办法把最小的数放到x上,先将x与y进行比较,如果x> y则将x与y的值进行交换,然后再用x与z进行比较,如果x> z则将x与z的值进行交换,这样能使x最小。     
  425. import java.util.*;  
  426. public class test {  
  427.     public static void main (String[]args){   
  428.         int i=0;  
  429.         int j=0;  
  430.         int k=0;  
  431.         int x=0;  
  432.         System.out.print("请输入三个数\n");     
  433.         Scanner input = new Scanner(System.in);  
  434.         i=input.nextInt();  
  435.         j=input.nextInt();  
  436.         k=input.nextInt();  
  437.         if(i>j)  
  438.         {  
  439.           x=i;  
  440.           i=j;  
  441.           j=x;  
  442.         }  
  443.         if(i>k)  
  444.         {  
  445.           x=i;  
  446.           i=k;  
  447.           k=x;  
  448.         }  
  449.         if(j>k)  
  450.         {  
  451.           x=j;  
  452.           j=k;  
  453.           k=x;  
  454.         }  
  455.         System.out.println(i+", "+j+", "+k);  
  456.     }  
  457. }  
  458. 【程序16】 题目:输出9*9口诀。     
  459. 1.程序分析:分行与列考虑,共99列,i控制行,j控制列。     
  460. public class jiujiu {  
  461. public static void main(String[] args)  
  462. {  
  463.     int i=0;  
  464.     int j=0;  
  465.     for(i=1;i<=9;i++)  
  466.     {   for(j=1;j<=9;j++)  
  467.             System.out.print(i+"*"+j+"="+i*j+"\t");  
  468.             System.out.println();  
  469.     }  
  470. }  
  471. }  
  472. 不出现重复的乘积(下三角)  
  473. public class jiujiu {  
  474. public static void main(String[] args)  
  475. {  
  476.     int i=0;  
  477.     int j=0;  
  478.     for(i=1;i<=9;i++)  
  479.     {   for(j=1;j<=i;j++)  
  480.             System.out.print(i+"*"+j+"="+i*j+"\t");  
  481.             System.out.println();  
  482.     }  
  483. }  
  484. }  
  485. 上三角  
  486. public class jiujiu {  
  487. public static void main(String[] args)  
  488. {  
  489.     int i=0;  
  490.     int j=0;  
  491.     for(i=1;i<=9;i++)  
  492.     {   for(j=i;j<=9;j++)  
  493.             System.out.print(i+"*"+j+"="+i*j+"\t");  
  494.             System.out.println();  
  495.     }  
  496. }  
  497. }  
  498. 【程序17】   题目:猴子吃桃问题:猴子第一天摘下若干个桃子,当即吃了一半,还不瘾,又多吃了一个   第二天早上又将剩下的桃子吃掉一半,又多吃了一个。以后每天早上都吃了前一天剩下   的一半零一个。到第10天早上想再吃时,见只剩下一个桃子了。求第一天共摘了多少。     
  499. 1.程序分析:采取逆向思维的方法,从后往前推断。     
  500. public class 猴子吃桃 {  
  501.     static int total(int day){  
  502.          if(day == 10){  
  503.           return 1;  
  504.          }  
  505.          else{  
  506.           return (total(day+1)+1)*2;  
  507.          }  
  508.         }  
  509. public static void main(String[] args)  
  510. {  
  511.     System.out.println(total(1));  
  512. }  
  513. }  
  514. 【程序18】   题目:两个乒乓球队进行比赛,各出三人。甲队为a,b,c三人,乙队为x,y,z三人。已抽签决定比赛名单。有人向队员打听比赛的名单。a说他不和x比,c说他不和x,z比,请编程序找出三队赛手的名单。     
  515. 1.程序分析:判断素数的方法:用一个数分别去除2到sqrt(这个数),如果能被整除,   则表明此数不是素数,反之是素数。     
  516. import java.util.ArrayList;  
  517. public class pingpang {  
  518.      String a,b,c;  
  519.      public static void main(String[] args) {  
  520.       String[] op = { "x""y""z" };  
  521.       ArrayList<pingpang> arrayList=new ArrayList<pingpang>();  
  522.       for (int i = 0; i < 3; i++)  
  523.        for (int j = 0; j < 3; j++)  
  524.         for (int k = 0; k < 3; k++) {  
  525.             pingpang a=new pingpang(op[i],op[j],op[k]);  
  526.          if(!a.a.equals(a.b)&&!a.b.equals(a.c)&&!a.a.equals("x")  
  527.            &&!a.c.equals("x")&&!a.c.equals("z")){  
  528.           arrayList.add(a);  
  529.          }  
  530.         }  
  531.       for(Object a:arrayList){  
  532.       System.out.println(a);  
  533.       }  
  534.      }  
  535.      public pingpang(String a, String b, String c) {  
  536.       super();  
  537.       this.a = a;  
  538.       this.b = b;  
  539.       this.c = c;  
  540.      }  
  541.      @Override  
  542.      public String toString() {  
  543.       // TODO Auto-generated method stub  
  544.       return "a的对手是"+a+","+"b的对手是"+b+","+"c的对手是"+c+"\n";  
  545.      }  
  546. }  
  547. 【程序19】  题目:打印出如下图案(菱形)     
  548. *     
  549. ***     
  550. ******     
  551. ********     
  552. ******     
  553. ***     
  554. *     
  555. 1.程序分析:先把图形分成两部分来看待,前四行一个规律,后三行一个规律,利用双重   for循环,第一层控制行,第二层控制列。     
  556. 三角形:  
  557. public class StartG {  
  558.    public static void main(String [] args)  
  559.    {  
  560.        int i=0;  
  561.        int j=0;  
  562.        for(i=1;i<=4;i++)  
  563.        {   for(j=1;j<=2*i-1;j++)  
  564.                System.out.print("*");  
  565.             System.out.println("");      
  566.        }  
  567.        for(i=4;i>=1;i--)  
  568.        { for(j=1;j<=2*i-3;j++)  
  569.                System.out.print("*");  
  570.                 System.out.println("");      
  571.        }  
  572.    }  
  573.  }  
  574.   
  575. 菱形:  
  576. public class StartG {  
  577.    public static void main(String [] args)  
  578.    {  
  579.        int i=0;  
  580.        int j=0;  
  581.        for(i=1;i<=4;i++)  
  582.        {  
  583.            for(int k=1; k<=4-i;k++)  
  584.              System.out.print(" ");  
  585.            for(j=1;j<=2*i-1;j++)  
  586.                System.out.print("*");  
  587.            System.out.println("");      
  588.        }  
  589.        for(i=4;i>=1;i--)  
  590.        {   
  591.            for(int k=1; k<=5-i;k++)  
  592.                  System.out.print(" ");  
  593.            for(j=1;j<=2*i-3;j++)  
  594.                System.out.print("*");  
  595.             System.out.println("");      
  596.        }  
  597.    }  
  598.  }  
  599.   
  600. 【程序20】   题目:有一分数序列:2/13/25/38/513/821/13...求出这个数列的前20项之和。     
  601. 1.程序分析:请抓住分子与分母的变化规律。     
  602. public class test20 {  
  603.  public static void main(String[] args) {  
  604.   float fm = 1f;  
  605.   float fz = 1f;  
  606.   float temp;  
  607.   float sum = 0f;  
  608.   for (int i=0;i<20;i++){  
  609.    temp = fm;  
  610.    fm = fz;  
  611.    fz = fz + temp;  
  612.    sum += fz/fm;  
  613.    //System.out.println(sum);  
  614.   }  
  615.   System.out.println(sum);  
  616.  }  
  617. }  
  618.   
  619.   
  620. 【程序21】   题目:求1+2!+3!+...+20!的和     
  621. 1.程序分析:此程序只是把累加变成了累乘。     
  622. public class Ex21 {  
  623.     static long sum = 0;   
  624.     static long fac = 0;  
  625.     public static void main(String[] args) {  
  626.        long sum = 0;   
  627.        long fac = 1;  
  628.        for(int i=1; i<=10; i++) {  
  629.         fac = fac * i;  
  630.         sum += fac;  
  631.        }  
  632.        System.out.println(sum);  
  633.     }  
  634.     }  
  635. 【程序22】   题目:利用递归方法求5!。     
  636. 1.程序分析:递归公式:fn=fn_1*4!     
  637. import java.util.Scanner;  
  638. public class Ex22 {  
  639. public static void main(String[] args) {  
  640.    Scanner s = new Scanner(System.in);  
  641.    int n = s.nextInt();  
  642.    Ex22 tfr = new Ex22();  
  643.    System.out.println(tfr.recursion(n));  
  644.   
  645. }  
  646.   
  647. public long recursion(int n) {  
  648.    long value = 0 ;  
  649.    if(n ==1 || n == 0) {  
  650.     value = 1;  
  651.    } else if(n > 1) {  
  652.     value = n * recursion(n-1);  
  653.    }  
  654.    return value;  
  655. }  
  656.   
  657. }  
  658.   
  659. 【程序23】   题目:有5个人坐在一起,问第五个人多少岁?他说比第4个人大2岁。问第4个人岁数,他说比第3个人大2岁。问第三个人,又说比第2人大两岁。问第2个人,说比第一个人大两岁。最后问第一个人,他说是10岁。请问第五个人多大?     
  660. 1.程序分析:利用递归的方法,递归分为回推和递推两个阶段。要想知道第五个人岁数,需知道第四人的岁数,依次类推,推到第一人(10岁),再往回推。     
  661. public class Ex23 {  
  662.   
  663.      static int getAge(int n){  
  664.       if (n==1){  
  665.        return 10;  
  666.       }  
  667.       return 2 + getAge(n-1);  
  668.      }  
  669.      public static void main(String[] args) {  
  670.       System.out.println("第五个的年龄为:"+getAge(5));  
  671.      }  
  672.     }  
  673. 【程序24】   题目:给一个不多于5位的正整数,要求:一、求它是几位数,二、逆序打印出各位数字。     
  674. import java.util.Scanner;  
  675. public class Ex24 {  
  676. public static void main(String[] args) {  
  677.    Ex24 tn = new Ex24();  
  678.    Scanner s = new Scanner(System.in);  
  679.    long a = s.nextLong();  
  680.    if(a < 0 || a > 100000) {  
  681.     System.out.println("Error Input, please run this program Again");  
  682.     System.exit(0);  
  683.    }  
  684.     if(a >=0 && a <=9) {  
  685.     System.out.println( a + "是一位数");  
  686.     System.out.println("按逆序输出是" + '\n' + a);  
  687.    } else if(a >= 10 && a <= 99) {  
  688.     System.out.println(a + "是二位数");  
  689.     System.out.println("按逆序输出是" );  
  690.     tn.converse(a);  
  691.    } else if(a >= 100 && a <= 999) {  
  692.     System.out.println(a + "是三位数");  
  693.     System.out.println("按逆序输出是" );  
  694.     tn.converse(a);  
  695.    } else if(a >= 1000 && a <= 9999) {  
  696.     System.out.println(a + "是四位数");  
  697.     System.out.println("按逆序输出是" );  
  698.     tn.converse(a);  
  699.    } else if(a >= 10000 && a <= 99999) {  
  700.     System.out.println(a + "是五位数");  
  701.     System.out.println("按逆序输出是" );  
  702.     tn.converse(a);  
  703.    }  
  704. }  
  705. public void converse(long l) {  
  706.    String s = Long.toString(l);  
  707.    char[] ch = s.toCharArray();  
  708.    for(int i=ch.length-1; i>=0; i--) {  
  709.     System.out.print(ch[i]);  
  710.    }  
  711. }  
  712. }  
  713. 【程序25】   题目:一个5位数,判断它是不是回文数。即12321是回文数,个位与万位相同,十位与千位相同。     
  714. import java.util.Scanner;  
  715. public class Ex25 {  
  716. static int[] a = new int[5];  
  717. static int[] b = new int[5];  
  718. public static void main(String[] args) {  
  719.    boolean is =false;  
  720.    Scanner s = new Scanner(System.in);  
  721.    long l = s.nextLong();  
  722.    if (l > 99999 || l < 10000) {  
  723.     System.out.println("Input error, please input again!");  
  724.     l = s.nextLong();  
  725.    }  
  726.    for (int i = 4; i >= 0; i--) {  
  727.     a[i] = (int) (l / (long) Math.pow(10, i));  
  728.     l =(l % ( long) Math.pow(10, i));  
  729.    }  
  730.    System.out.println();  
  731.    for(int i=0,j=0; i<5; i++, j++) {  
  732.      b[j] = a[i];  
  733.    }  
  734.    for(int i=0,j=4; i<5; i++, j--) {  
  735.     if(a[i] != b[j]) {  
  736.      is = false;  
  737.      break;  
  738.     } else {  
  739.      is = true;  
  740.     }  
  741.    }  
  742.    if(is == false) {  
  743.     System.out.println("is not a Palindrom!");  
  744.    } else if(is == true) {  
  745.     System.out.println("is a Palindrom!");  
  746.    }  
  747. }  
  748. }  
  749. 【程序26】   题目:请输入星期几的第一个字母来判断一下是星期几,如果第一个字母一样,则继续   判断第二个字母。     
  750. 1.程序分析:用情况语句比较好,如果第一个字母一样,则判断用情况语句或if语句判断第二个字母。     
  751. import java.util.Scanner;  
  752. public class Ex26 {  
  753.  public static void main(String[] args){  
  754.   //保存用户输入的第二个字母  
  755.   char weekSecond;  
  756.   //将Scanner类示例化为input对象,用于接收用户输入  
  757.   Scanner input = new Scanner(System.in);  
  758.   //开始提示并接收用户控制台输入   
  759.   System.out.print("请输入星期值英文的第一个字母,我来帮您判断是星期几:");  
  760.   String letter = input.next();  
  761.   //判断用户控制台输入字符串长度是否是一个字母  
  762.   if (letter.length() == 1){  
  763.    //利用取第一个索引位的字符来实现让Scanner接收char类型输入  
  764.    char weekFirst = letter.charAt(0);  
  765.    switch (weekFirst){  
  766.   case 'm':  
  767.      //当输入小写字母时,利用switch结构特性执行下一个带break语句的case分支,以实现忽略用户控制台输入大小写敏感的功能  
  768.     case 'M':  
  769.       System.out.println("星期一(Monday)");  
  770.      break;  
  771.      case 't':  
  772.      //当输入小写字母时,利用switch结构特性执行下一个带break语句的case分支,以实现忽略用户控制台输入大小写敏感的功能  
  773.     case 'T':  
  774.       System.out.print("由于星期二(Tuesday)与星期四(Thursday)均以字母T开头,故需输入第二个字母才能正确判断:");  
  775.      letter = input.next();  
  776.      //判断用户控制台输入字符串长度是否是一个字母  
  777.      if (letter.length() == 1){  
  778.       //利用取第一个索引位的字符来实现让Scanner接收char类型输入  
  779.       weekSecond = letter.charAt(0);  
  780.       //利用或(||)运算符来实现忽略用户控制台输入大小写敏感的功能  
  781.       if (weekSecond == 'U' || weekSecond == 'u'){  
  782.        System.out.println("星期二(Tuesday)");  
  783.        break;  
  784.       //利用或(||)运算符来实现忽略用户控制台输入大小写敏感的功能  
  785.       } else if (weekSecond == 'H' || weekSecond == 'h'){  
  786.        System.out.println("星期四(Thursday)");  
  787.        break;  
  788.       //控制台错误提示  
  789.       } else{  
  790.        System.out.println("输入错误,不能识别的星期值第二个字母,程序结束!");  
  791.        break;  
  792.       }  
  793.      } else {  
  794.       //控制台错误提示   
  795.       System.out.println("输入错误,只能输入一个字母,程序结束!");  
  796.       break;  
  797.      }  
  798.     case 'w':  
  799.      //当输入小写字母时,利用switch结构特性执行下一个带break语句的case分支,以实现忽略用户控制台输入大小写敏感的功能  
  800.     case 'W':  
  801.      System.out.println("星期三(Wednesday)");  
  802.      break;  
  803.     case 'f':  
  804.      //当输入小写字母时,利用switch结构特性执行下一个带break语句的case分支,以实现忽略用户控制台输入大小写敏感的功能  
  805.     case 'F':  
  806.      System.out.println("星期五(Friday)");  
  807.      break;  
  808.     case 's':  
  809.      //当输入小写字母时,利用switch结构特性执行下一个带break语句的case分支,以实现忽略用户控制台输入大小写敏感的功能  
  810.     case 'S':  
  811.      System.out.print("由于星期六(Saturday)与星期日(Sunday)均以字母S开头,故需输入第二个字母才能正确判断:");  
  812.      letter = input.next();  
  813.      //判断用户控制台输入字符串长度是否是一个字母  
  814.      if (letter.length() == 1){  
  815.       //利用取第一个索引位的字符来实现让Scanner接收char类型输入  
  816.       weekSecond = letter.charAt(0);  
  817.       //利用或(||)运算符来实现忽略用户控制台输入大小写敏感的功能  
  818.       if (weekSecond == 'A' || weekSecond == 'a'){  
  819.        System.out.println("星期六(Saturday)");  
  820.        break;  
  821.       //利用或(||)运算符来实现忽略用户控制台输入大小写敏感的功能  
  822.       } else if (weekSecond == 'U' || weekSecond == 'u'){  
  823.        System.out.println("星期日(Sunday)");  
  824.        break;  
  825.       //控制台错误提示  
  826.       } else{  
  827.        System.out.println("输入错误,不能识别的星期值第二个字母,程序结束!");  
  828.        break;  
  829.       }  
  830.      } else{  
  831.       //控制台错误提示   
  832.       System.out.println("输入错误,只能输入一个字母,程序结束!");  
  833.       break;  
  834.      }  
  835.     default:  
  836.      //控制台错误提示   
  837.      System.out.println("输入错误,不能识别的星期值第一个字母,程序结束!");  
  838.      break;  
  839.    }   
  840.   } else{  
  841.    //控制台错误提示   
  842.    System.out.println("输入错误,只能输入一个字母,程序结束!");  
  843.   }  
  844.  }  
  845. }  
  846.   
  847. 【程序27】   题目:求100之内的素数     
  848. public class Ex27 {  
  849.  public static void main(String args[])  
  850.  {  
  851.   int sum,i;  
  852.   for(sum=2;sum<=100;sum++)  
  853.   {  
  854.    for(i=2;i<=sum/2;i++)  
  855.    {  
  856.     if(sum%i==0)  
  857.      break;  
  858.    }  
  859.    if(i>sum/2)  
  860.     System.out.println(sum+"是素数");  
  861.   }  
  862.  }  
  863. }  
  864.  题目:对10个数进行排序     
  865. :可以利用选择法,即从后9个比较过程中,选择一个最小的与第一个元素交换,   下次类推,即用第二个元素与后8个进行比较,并进行交换。     
  866. import java.util.Arrays;  
  867. import java.util.Random;  
  868. import java.util.Scanner;  
  869. public class Ex28 {  
  870.  public static void main(String[] args) {  
  871.   int arr[] = new int[11];  
  872.   Random r=new Random();  
  873.   for(int i=0;i<10;i++){  
  874.    arr[i]=r.nextInt(100)+1;//得到10个100以内的整数  
  875.   }  
  876.   Arrays.sort(arr);  
  877.   for(int i=0;i<arr.length;i++){  
  878.    System.out.print(arr[i]+"\t");  
  879.   }  
  880.   System.out.print("\nPlease Input a int number: ");  
  881.   Scanner sc=new Scanner(System.in);  
  882.   arr[10]=sc.nextInt();//输入一个int值  
  883.   Arrays.sort(arr);  
  884.   for(int i=0;i<arr.length;i++){  
  885.    System.out.print(arr[i]+"\t");  
  886.   }  
  887.  }  
  888. }  
  889. 题目:求一个3*3矩阵对角线元素之和     
  890. 1.程序分析:利用双重for循环控制输入二维数组,再将a[i][i]累加后输出。     
  891. public class Ex29 {  
  892.     public static void main(String[] args){  
  893.     double sum=0;  
  894.     int array[][]={{1,2,3},{4,56},{7,7,8}};  
  895.     for(int i=0;i<3;i++)  
  896.        for(int j=0;j<3;j++){  
  897.           if(i==j)  
  898.             sum=sum + array[i][j];  
  899.        }  
  900.     System.out.println( sum);    
  901.     }  
  902. }  
  903. 【程序30】   题目:有一个已经排好序的数组。现输入一个数,要求按原来的规律将它插入数组中。     
  904. 1.   程序分析:首先判断此数是否大于最后一个数,然后再考虑插入中间的数的情况,插入后此元素之后的数,依次后移一个位置。     
  905. import java.util.Random;  
  906. public class ArraySort {  
  907.   public static void main(String[] args)  
  908.   {  int temp=0;  
  909.       int myarr[] = new int[12];  
  910.       Random r=new Random();  
  911.       for(int i=1;i<=10;i++)  
  912.         myarr[i]=r.nextInt(1000);  
  913.       for (int k=1;k<=10;k++)  
  914.       System.out.print(myarr[k]+",");  
  915.       for(int i=1;i<=9;i++)  
  916.           for(int k=i+1;k<=10;k++)  
  917.               if(myarr[i]>myarr[k])  
  918.               {  
  919.                   temp=myarr[i];  
  920.                   myarr[i]=myarr[k];  
  921.                   myarr[k]=temp;  
  922.               }  
  923.       System.out.println("");  
  924.       for (int k=1;k<=10;k++)  
  925.           System.out.print(myarr[k]+",");  
  926.     
  927.        myarr[11]=r.nextInt(1000);  
  928.        for(int k=1;k<=10;k++)  
  929.            if(myarr[k]>myarr[11])  
  930.            {  
  931.                temp=myarr[11];  
  932.                for(int j=11;j>=k+1;j--)  
  933.                    myarr[j]=myarr[j-1];  
  934.                myarr[k]=temp;  
  935.            }  
  936.          System.out.println("");     
  937.        for (int k=1;k<=11;k++)  
  938.               System.out.print(myarr[k]+",");  
  939.   }  
  940. }  
  941.   
  942. 【程序31】   题目:将一个数组逆序输出。     
  943. 程序分析:用第一个与最后一个交换。     
  944. 其实,用循环控制变量更简单:  
  945.        for(int k=11;k>=1;k--)  
  946.               System.out.print(myarr[k]+",");  
  947.   
  948. 【程序32】   题目:取一个整数a从右端开始的47位。     
  949. 程序分析:可以这样考虑:     
  950. (1)先使a右移4位。     
  951. (2)设置一个低4位全为1,其余全为0的数。可用~(~0 < <4)     
  952. (3)将上面二者进行&运算。     
  953.   
  954. public class Ex32 {  
  955.   public static void main(String[] args)  
  956.   {  
  957.     int a=0;  
  958.     long b=18745678;  
  959.     a=(int) Math.floor(b % Math.pow(10,7)/Math.pow(103));  
  960.     System.out.println(a);  
  961.   }  
  962.   }   
  963. 题目:打印出杨辉三角形(要求打印出10行如下图)     
  964. 1.程序分析:     
  965. 1     
  966. 1   1     
  967. 1   2   1     
  968. 1   3   3   1     
  969. 1   4   6   4   1     
  970. 1   5   10   10   5   1     
  971. public class Ex33 {  
  972.     public static void main(String args[]){  
  973.            int i,j;  
  974.            int a[][];  
  975.            a=new int[8][8];  
  976.           for(i=0;i<8;i++){  
  977.              a[i][i]=1;  
  978.              a[i][0]=1;   
  979.             }  
  980.           for(i=2;i<8;i++){  
  981.            for(j=1;j<=i-1;j++){  
  982.           a[i][j]=a[i-1][j-1]+a[i-1][j];   
  983.            }  
  984.           }    
  985.           for(i=0;i<8;i++){  
  986.           for(j=0;j<i;j++){    
  987.            System.out.printf("  "+a[i][j]);  
  988.            }  
  989.           System.out.println();  
  990.           }  
  991.          }  
  992. }  
  993.   
  994.    题目:输入3个数a,b,c,按大小顺序输出。     
  995. 1.程序分析:利用指针方法。     
  996. public class Ex34 {  
  997.     public static void main(String[] args)   
  998.     {   
  999.     int []arrays = {800,56,500};   
  1000.     for(int i=arrays.length;--i>=0;)   
  1001.     {   
  1002.     for(int j=0;j<i;j++)   
  1003.     {   
  1004.     if(arrays[j]>arrays[j+1])   
  1005.     {   
  1006.     int temp=arrays[j];   
  1007.     arrays[j]=arrays[j+1];   
  1008.     arrays[j+1]=temp;   
  1009.     }   
  1010.     }   
  1011.     }   
  1012.     for(int n=0;n<arrays.length;n++)   
  1013.     System.out.println(arrays[n]);   
  1014.     }   
  1015.   
  1016. }  
  1017.   题目:输入数组,最大的与第一个元素交换,最小的与最后一个元素交换,输出数组。     
  1018. import java.util.*;   
  1019. public class Ex35 {  
  1020. public static void main(String[] args) {   
  1021. int i, min, max, n, temp1, temp2;   
  1022. int a[];   
  1023. System.out.println("输入数组的长度:");   
  1024. Scanner keyboard = new Scanner(System.in);   
  1025. n = keyboard.nextInt();   
  1026. a = new int[n];   
  1027. for (i = 0; i < n; i++) {   
  1028. System.out.print("输入第" + (i + 1) + "个数据");   
  1029. a[i] = keyboard.nextInt();   
  1030. }   
  1031. //以上是输入整个数组  
  1032. max = 0;   
  1033. min = 0;   
  1034. //设置两个标志,开始都指向第一个数  
  1035. for (i = 1; i < n; i++) {   
  1036. if (a[i] > a[max])   
  1037. max = i; //遍历数组,如果大于a[max],就把他的数组下标赋给max  
  1038. if (a[i] < a[min])   
  1039. min = i; //同上,如果小于a[min],就把他的数组下标赋给min  
  1040. }   
  1041. //以上for循环找到最大值和最小值,max是最大值的下标,min是最小值的下标  
  1042. temp1 = a[0];   
  1043. temp2 = a[min]; //这两个temp只是为了在交换时使用  
  1044.   
  1045. a[0] = a[max];   
  1046. a[max] = temp1; //首先交换a[0]和最大值a[max]  
  1047.   
  1048. if (min != 0) { //如果最小值不是a[0],执行下面  
  1049. a[min] = a[n - 1];   
  1050. a[n - 1] = temp2; //交换a[min]和a[n-1]  
  1051. else {       //如果最小值是a[0],执行下面  
  1052. a[max] = a[n - 1];   
  1053. a[n - 1] = temp1;   
  1054. }   
  1055.   
  1056. for (i = 0; i < n; i++) { //输出数组  
  1057. System.out.print(a[i] + " ");   
  1058. }   
  1059. }  
  1060. }  
  1061.    题目:有n个整数,使其前面各数顺序向后移m个位置,最后m个数变成最前面的m个数     
  1062. 【程序37】     
  1063. 题目:有n个人围成一圈,顺序排号。从第一个人开始报数(从13报数),凡报到3的人退出圈子,问最后留下的是原来第几号的那位。     
  1064. import java.util.Scanner;  
  1065. public class Ex37 {  
  1066.     public static void main(String[] args) {  
  1067.            Scanner s = new Scanner(System.in);  
  1068.            int n = s.nextInt();  
  1069.            boolean[] arr = new boolean[n];  
  1070.            for(int i=0; i<arr.length; i++) {  
  1071.             arr[i] = true;//下标为TRUE时说明还在圈里  
  1072.            }  
  1073.            int leftCount = n;  
  1074.            int countNum = 0;  
  1075.            int index = 0;  
  1076.            while(leftCount > 1) {  
  1077.             if(arr[index] == true) {//当在圈里时  
  1078.              countNum ++; //报数递加  
  1079.              if(countNum == 3) {//报道3时  
  1080.               countNum =0;//从零开始继续报数  
  1081.               arr[index] = false;//此人退出圈子  
  1082.               leftCount --;//剩余人数减一  
  1083.              }  
  1084.             }  
  1085.             index ++;//每报一次数,下标加一  
  1086.             if(index == n) {//是循环数数,当下标大于n时,说明已经数了一圈,  
  1087.              index = 0;//将下标设为零重新开始。  
  1088.             }  
  1089.            }  
  1090.            for(int i=0; i<n; i++) {  
  1091.             if(arr[i] == true) {  
  1092.              System.out.println(i);  
  1093.             }  
  1094.            }  
  1095.      }  
  1096. }  
  1097.  
  1098. 题目:写一个函数,求一个字符串的长度,在main函数中输入字符串,并输出其长度。     
  1099. import java.util.Scanner;  
  1100. public class Ex38 {  
  1101. public static void main(String [] args)  
  1102. {  
  1103.     Scanner s = new Scanner(System.in);  
  1104.     System.out.println("请输入一个字符串");  
  1105.     String mys= s.next();  
  1106.     System.out.println(str_len(mys));  
  1107. }  
  1108.   public static int str_len(String x)  
  1109.   {  
  1110.       return x.length();  
  1111.   }  
  1112. }  
  1113. 题目:编写一个函数,输入n为偶数时,调用函数求1/2+1/4+...+1/n,当输入n为奇数时,调用函数1/1+1/3+...+1/n  
  1114. 题目:字符串排序。     
  1115.   
  1116. import java.util.*;     
  1117. public class test{  
  1118.     public   static   void   main(String[]   args)  
  1119.     {     
  1120.      ArrayList<String> list=new ArrayList<String>();     
  1121.      list.add("010101");     
  1122.      list.add("010003");     
  1123.     list.add("010201");     
  1124.     Collections.sort(list);     
  1125.   for(int   i=0;i<list.size();i++){     
  1126.   System.out.println(list.get(i));     
  1127.   }     
  1128.   }     
  1129.   }  
  1130.   
  1131. 【程序40】     
  1132. 题目:海滩上有一堆桃子,五只猴子来分。第一只猴子把这堆桃子凭据分为五份,多了一个,这只猴子把多的一个扔入海中,拿走了一份。第二只猴子把剩下的桃子又平均分成五份,又多了一个,它同样把多的一个扔入海中,拿走了一份,第三、第四、第五只猴子都是这样做的,问海滩上原来最少有多少个桃子?     
  1133.   
  1134. public class Dg {  
  1135. static int ts=0;//桃子总数  
  1136. int fs=1;//记录分的次数  
  1137. static int hs=5;//猴子数...  
  1138. int tsscope=5000;//桃子数的取值范围.太大容易溢出.  
  1139. public int fT(int t){  
  1140. if(t==tsscope){  
  1141. //当桃子数到了最大的取值范围时取消递归  
  1142. System.out.println("结束");  
  1143. return 0;  
  1144. }  
  1145. else{  
  1146. if((t-1)%hs==0 && fs <=hs){  
  1147. if(fs==hs)  
  1148. {  
  1149. System.out.println("桃子数 = "+ts +" 时满足分桃条件");  
  1150. }  
  1151.    fs+=1;  
  1152.    return fT((t-1)/5*4);// 返回猴子拿走一份后的剩下的总数  
  1153. }  
  1154. else  
  1155. {  
  1156. //没满足条件  
  1157. fs=1;//分的次数重置为1  
  1158. return fT(ts+=1);//桃子数加+1  
  1159. }  
  1160. }  
  1161. }  
  1162. public static void main(String[] args) {  
  1163. new Dg().fT(0);  
  1164. }  
  1165.   
  1166. }  
  1167.   
  1168. 【程序41】  
  1169. java排序算法的比较  
  1170.   
  1171.   
  1172. import java.util.*;   
  1173. import java.io.*;   
  1174. public class SortAlgorithm   
  1175. {   
  1176. static Random rand = new Random();   
  1177. void bubbleSort(int[] numlist) // 冒泡排序算法   
  1178. {   
  1179. int temp;   
  1180. for(int j=1;j<numlist.length;j++)   
  1181. for(int i=0;i<numlist.length-j;i++)   
  1182. if(numlist>numlist[i+1])   
  1183. {   
  1184. temp = numlist[i+1];   
  1185. numlist[i+1] = numlist;   
  1186. numlist = temp;   
  1187. }   
  1188. }   
  1189. void selectionSort (int[] numlist) //选择排序算法   
  1190. {   
  1191. int temp;   
  1192. for(int i=0;i<numlist.length-1;i++)   
  1193. for(int j=i+1;j<numlist.length;j++)   
  1194. if(numlist>numlist[j])   
  1195. {   
  1196. temp = numlist[j];   
  1197. numlist[j] = numlist;   
  1198. numlist = temp;   
  1199. }   
  1200. }   
  1201. void insertSort (int[] numlist) //插入排序算法   
  1202. {   
  1203. int temp,in,out;   
  1204. for(out=1;out<numlist.length;out++)   
  1205. {   
  1206. temp=numlist[out];   
  1207. in=out;   
  1208. while(in>0 && numlist[in-1]>=temp)   
  1209. {   
  1210. numlist[in]=numlist[in-1];   
  1211. --in;   
  1212. }   
  1213. numlist[in]=temp;   
  1214. }   
  1215. }   
  1216. void display (int[] num) // 打印出排序结果   
  1217. {   
  1218. for(int i = 0;i<num.length;i++)   
  1219. System.out.print(num+" ");   
  1220. System.out.println("");   
  1221. }   
  1222. static int pRand(int mod) // 生成随即数组   
  1223. {   
  1224. return Math.abs(rand.nextInt())%mod;   
  1225. }   
  1226. public static void main(String args[])throws IOException   
  1227. {   
  1228. SortAlgorithm sortAlgorithm = new SortAlgorithm();   
  1229. int[] numList = new int[10];   
  1230. for(int i = 0;i<numList.length;i++)   
  1231. numList = pRand(100); //调用pRand方法,把随即生成的数据输入到   
  1232. // 数组中   
  1233. System.out.println("随即生成的数组是:");   
  1234. // 打印出原数组,   
  1235. for(int j =0;j<numList.length;j++)   
  1236. System.out.print(numList[j]+" ");   
  1237. System.out.println("");   
  1238. long begin = System.currentTimeMillis(); //排序开始时间,调用系统的当前时间   
  1239. sortAlgorithm.bubbleSort(numList); //执行冒泡排序   
  1240. long end = System.currentTimeMillis(); //排序结束时间,调用系统当前时间   
  1241. System.out.println("冒泡排序用时为:" + (end-begin)); //排序用时   
  1242. System.out.println("排序后的数组为:");   
  1243. sortAlgorithm.display(numList);   
  1244. begin = System.currentTimeMillis();   
  1245. sortAlgorithm.selectionSort(numList);   
  1246. end = System.currentTimeMillis();   
  1247. System.out.println("选择排序用时为:" +(end-begin));   
  1248. System.out.println("排序后的数组为:");   
  1249. sortAlgorithm.display(numList);   
  1250. begin = System.currentTimeMillis();   
  1251. sortAlgorithm.insertSort(numList);   
  1252. end = System.currentTimeMillis();   
  1253. System.out.println("插入排序用时为:" + (end-begin));   
  1254. System.out.println("排序后的数组为:");   
  1255. sortAlgorithm.display(numList);   
  1256. }   
  1257. }   :用122345这六个数字,用java写一个main函数,打印出所有不同的排列,如:512234412345等,要求:"4"不能在第三位,"3""5"不能相连。   
  1258. static int[] bits = new int[] { 12345 };   
  1259. /**  
  1260. * @param args  
  1261. */   
  1262. public static void main(String[] args) {   
  1263. sort("", bits);   
  1264. }   
  1265. private static void sort(String prefix, int[] a) {   
  1266. if (a.length == 1) {   
  1267. System.out.println(prefix + a[0]);   
  1268. }   
  1269. for (int i = 0; i < a.length; i++) {   
  1270. sort(prefix + a, copy(a, i));   
  1271. }   
  1272. }   
  1273. private static int[] copy(int[] a,int index){   
  1274. int[] b = new int[a.length-1];   
  1275. System.arraycopy(a, 0, b, 0, index);   
  1276. System.arraycopy(a, index+1, b, index, a.length-index-1);   
  1277. return b;   
  1278. }  
0 0