java11235递归_JavaSE知识-23(递归练习)

统计该文件夹大小

package com.hwh.test;

import java.io.File;

import java.util.Scanner;

public class Test1 {

public static void main(String[] args) {

/**

* @param args

* 需求:1,从键盘接收一个文件夹路径,统计该文件夹大小

*

* 从键盘接收一个文件夹路径

* 1,创建键盘录入对象

* 2,定义一个无限循环

* 3,将键盘录入的结果存储并封装成File对象

* 4,对File对象判断

* 5,将文件夹路径对象返回

*

* 统计该文件夹大小

* 1,定义一个求和变量

* 2,获取该文件夹下所有的文件和文件夹listFiles();

* 3,遍历数组

* 4,判断是文件就计算大小并累加

* 5,判断是文件夹,递归调用

*/

//File dir = new File("F:\day06");

//System.out.println(dir.length());//直接获取文件夹的结果是0

//File dir = getDir();

File dir = new File("E:\eclipse-java-2019-12-R-win32-x86_64\eclipse\eclipse-workspace\day20");

System.out.println(getFileLength(dir));

}

/*

* 从键盘接收一个文件夹路径

* 1,返回值类型File

* 2,参数列表无

*/

public static File getDir() {

//1,创建键盘录入对象

Scanner sc = new Scanner(System.in);

System.out.println("请输入一个文件夹路径:");

//2,定义一个无限循环

while(true) {

//3,将键盘录入的结果存储并封装成File对象

String line = sc.nextLine();

File dir = new File(line);

//4,对File对象判断

if(!dir.exists()) {

System.out.println("您录入的文件夹路径不存在,请输入一个文件夹路径:");

}else if(dir.isFile()) {

System.out.println("您录入的是文件路径,请输入一个文件夹路径:");

}else {

//5,将文件夹路径对象返回

return dir;

}

}

}

/*

* 统计该文件夹大小

* 1,返回值类型long

* 2,参数列表File dir

*/

public static long getFileLength(File dir) {//dir = F:day06day07

//1,定义一个求和变量

long len = 0;

//2,获取该文件夹下所有的文件和文件夹listFiles();

File[] subFiles = dir.listFiles();//day07 Demo1_Student.class Demo1_Student.java

//3,遍历数组

for (File subFile : subFiles) {

//4,判断是文件就计算大小并累加

if(subFile.isFile()) {

len = len + subFile.length();

//5,判断是文件夹,递归调用

}else {

len = len + getFileLength(subFile);

}

}

return len;

}

}

运行结果为24936

46e8b69efc9a9befadcbc5664d0210d5.png

删除该文件夹

package com.hwh.test;

import java.io.File;

public class Test2 {

/**

* 需求:2,从键盘接收一个文件夹路径,删除该文件夹

*

* 删除该文件夹

* 分析:

* 1,获取该文件夹下的所有的文件和文件夹

* 2,遍历数组

* 3,判断是文件直接删除

* 4,如果是文件夹,递归调用

* 5,循环结束后,把空文件夹删掉

*/

public static void main(String[] args) {

File dir = Test1.getDir();//获取文件夹路径

deleteFile(dir);

}

/*

* 删除该文件夹

* 1,返回值类型 void

* 2,参数列表File dir

*/

public static void deleteFile(File dir) {

//1,获取该文件夹下的所有的文件和文件夹

File[] subFiles = dir.listFiles();

//2,遍历数组

for (File subFile : subFiles) {

//3,判断是文件直接删除

if(subFile.isFile()) {

subFile.delete();

//4,如果是文件夹,递归调用

}else {

deleteFile(subFile);

}

}

//5,循环结束后,把空文件夹删掉

dir.delete();

}

}

拷贝

package com.hwh.test;

import java.io.BufferedInputStream;

import java.io.BufferedOutputStream;

import java.io.File;

import java.io.FileInputStream;

import java.io.FileOutputStream;

import java.io.IOException;

public class Test3 {

/**

* 需求:3,从键盘接收两个文件夹路径,把其中一个文件夹中(包含内容)拷贝到另一个文件夹中

*

* 把其中一个文件夹中(包含内容)拷贝到另一个文件夹中

* 分析:

* 1,在目标文件夹中创建原文件夹

* 2,获取原文件夹中所有的文件和文件夹,存储在File数组中

* 3,遍历数组

* 4,如果是文件就用io流读写

* 5,如果是文件夹就递归调用

* @throws IOException

*/

public static void main(String[] args) throws IOException {

File src = Test1.getDir();

File dest = Test1.getDir();

if(src.equals(dest)) {

System.out.println("目标文件夹是源文件夹的子文件夹");

}else {

copy(src,dest);

}

}

/*

* 把其中一个文件夹中(包含内容)拷贝到另一个文件夹中

* 1,返回值类型void

* 2,参数列表File src,File dest

*/

public static void copy(File src, File dest) throws IOException {

//1,在目标文件夹中创建原文件夹

File newDir = new File(dest, src.getName());

newDir.mkdir();

//2,获取原文件夹中所有的文件和文件夹,存储在File数组中

File[] subFiles = src.listFiles();

//3,遍历数组

for (File subFile : subFiles) {

//4,如果是文件就用io流读写

if(subFile.isFile()) {

BufferedInputStream bis = new BufferedInputStream(new FileInputStream(subFile));

BufferedOutputStream bos =

new BufferedOutputStream(new FileOutputStream(new File(newDir,subFile.getName())));

int b;

while((b = bis.read()) != -1) {

bos.write(b);

}

bis.close();

bos.close();

//5,如果是文件夹就递归调用

}else {

copy(subFile,newDir);

}

}

}

}

按层级打印

package com.hwh.test;

import java.io.File;

public class Test4 {

/**

* 需求:4,从键盘接收一个文件夹路径,把文件夹中的所有文件以及文件夹的名字按层级打印, 例如:

* 把文件夹中的所有文件以及文件夹的名字按层级打印

* 分析:

* 1,获取所有文件和文件夹,返回的File数组

* 2,遍历数组

* 3,无论是文件还是文件夹,都需要直接打印

* 4,如果是文件夹,递归调用

*cc > aa > ddd > ggg.txt

*bbb.txt

*eee.txt

*fff.txt

*/

public static void main(String[] args) {

File dir = Test1.getDir();//获取文件夹路径

printLev(dir,0);

}

public static void printLev(File dir,int lev) {

//1,把文件夹中的所有文件以及文件夹的名字按层级打印

File[] subFiles = dir.listFiles();

//2,遍历数组

for (File subFile : subFiles) {

for(int i = 0; i <= lev; i++) {

System.out.print("");

}

//3,无论是文件还是文件夹,都需要直接打印

System.out.println(subFile);

//4,如果是文件夹,递归调用

if(subFile.isDirectory()) {

printLev(subFile,lev + 1);

//printLev(subFile,++lev);不需要改变lev值,只需要往里面传就行

}

}

}

}

运行结果为

e38c54466bd3ac049497d12bbd7cd7bf.png

斐波那契数列

package com.hwh.test;

public class Test5 {

/**

* * 不死神兔

* 故事得从西元1202年说起,话说有一位意大利青年,名叫斐波那契。

* 在他的一部著作中提出了一个有趣的问题:假设一对刚出生的小兔一个月后就能长成大兔,再过一个月就能生下一对小兔,并且此后每个月都生一对小兔,一年内没有发生死亡,

* 问:一对刚出生的兔子,一年内繁殖成多少对兔子?

* 1 1 2 3 5 8 13 21

* 1 = fun(1)

* 1 = fun(2)

* 2 = fun(1) + fun(2)

* 3 = fun(2) + fun(3)

*/

public static void main(String[] args) {

//demo1();

System.out.println(fun(7));

}

public static int fun(int num) {

if(num == 1||num == 2) {

return 1;

}else return fun(num-1)+fun(num-2);

}

public static void demo1() {

//用数组做不死神兔

int[] arr = new int[8];

//数组中第一个元素和第二个元素都为1

arr[0] = 1;

arr[1] = 1;

//遍历数组对其他元素赋值

for(int i = 2; i < arr.length; i++) {

arr[i] = arr[i - 2] + arr[i - 1];

}

//如何获取最后一个数

System.out.println(arr[arr.length - 1]);

}

}

1000的阶乘所有零和尾部零的个数

package com.hwh.test;

import java.math.BigInteger;

public class Test6 {

/**

* @param args

* 需求:求出1000的阶乘所有零和尾部零的个数,不用递归做

*/

public static void main(String[] args) {

/*int result = 1;

for(int i = 1; i <= 1000; i++) {

result = result * i;

}

System.out.println(result);//因为1000的阶乘远远超出了int的取值范围

*/

//demo1();

demo2();

}

public static void demo2() {//获取1000的阶乘尾部有多少个零

BigInteger bi1 = new BigInteger("1");

for(int i = 1; i <= 1000; i++) {

BigInteger bi2 = new BigInteger(i+"");

bi1 = bi1.multiply(bi2);//将bi1与bi2相乘的结果赋值给bi1

}

String str = bi1.toString();//获取字符串表现形式

StringBuilder sb = new StringBuilder(str);

str = sb.reverse().toString();//链式编程

int count = 0;//定义计数器

for(int i = 0; i < str.length(); i++) {

if('0' != str.charAt(i)) {

break;

}else {

count++;

}

}

System.out.println(count);

}

public static void demo1() {//求1000的阶乘中所有的零

BigInteger bi1 = new BigInteger("1");

for(int i = 1; i <= 1000; i++) {

BigInteger bi2 = new BigInteger(i+"");

bi1 = bi1.multiply(bi2);//将bi1与bi2相乘的结果赋值给bi1

}

String str = bi1.toString();//获取字符串表现形式

int count = 0;

for(int i = 0; i < str.length(); i++) {

if('0' == str.charAt(i)) {//如果字符串中出现了0字符

count++;//计数器加1

}

}

System.out.println(count);

}

}

约瑟夫环

package com.hwh.test;

import java.util.ArrayList;

public class Test8 {

/**

* @param args

* 约瑟夫环

* * 幸运数字

*/

public static void main(String[] args) {

System.out.println(getLucklyNum(8));

}

/*

* 获取幸运数字

* 1,返回值类型int

* 2,参数列表int num

*/

public static int getLucklyNum(int num) {

ArrayList list = new ArrayList<>();//创建集合存储1到num的对象

for(int i = 1; i <= num; i++) {

list.add(i);//将1到num存储在集合中

}

int count = 1;//用来数数的,只要是3的倍数就杀人

for(int i = 0; list.size() != 1; i++) {//只要集合中人数超过1,就要不断的杀

if(i == list.size()) {//如果i增长到集合最大的索引+1时

i = 0;//重新归零

}

if(count % 3 == 0) {//如果是3的倍数

list.remove(i--);//就杀人

}

count++;

}

return list.get(0);

}

}

无限级树(Java递归) 2007-02-08 10:26 这几天,用java写了一个无限极的树,递归写的,可能代码不够简洁,性能不够好,不过也练习,这几天再不断改进。前面几个小图标的判断,搞死我了。 package com.nickol.servlet; import java.io.IOException; import java.io.PrintWriter; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.util.ArrayList; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import com.nickol.utility.DB; public class category extends HttpServlet { /** * The doGet method of the servlet. * * This method is called when a form has its tag value method equals to get. * * @param request the request send by the client to the server * @param response the response send by the server to the client * @throws ServletException if an error occurred * @throws IOException if an error occurred */ public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setCharacterEncoding("utf-8"); response.setContentType("text/html"); PrintWriter out = response.getWriter(); out .println(""); out.println(""); out.println(" Category" + "" + "body{font-size:12px;}" + "" + "" + ""); out.println(" "); out.println(showCategory(0,0,new ArrayList(),"0")); out.println(" "); out.println(""); out.flush(); out.close(); } public String showCategory(int i,int n,ArrayList frontIcon,String countCurrent){ int countChild = 0; n++; String webContent = new String(); ArrayList temp = new ArrayList(); try{ Connection conn = DB.GetConn(); PreparedStatement ps = DB.GetPs("select * from category where pid = ?", conn); ps.setInt(1, i); ResultSet rs = DB.GetRs(ps); if(n==1){ if(rs.next()){ webContent += "";//插入结尾的减号 temp.add(new Integer(0)); } webContent += " ";//插入站点图标 webContent += rs.getString("cname"); webContent += "\n"; webContent += showCategory(Integer.parseInt(rs.getString("cid")),n,temp,"0"); } if(n==2){ webContent += "\n"; }else{ webContent += "\n"; } while(rs.next()){ for(int k=0;k<frontIcon.size();k++){ int iconStatic = ((Integer)frontIcon.get(k)).intValue(); if(iconStatic == 0){ webContent += "";//插入空白 }else if(iconStatic == 1){ webContent += "";//插入竖线 } } if(rs.isLast()){ if(checkChild(Integer.parseInt(rs.getString("cid")))){ webContent += "";//插入结尾的减号 temp = (ArrayList)frontIcon.clone(); temp.add(new Integer(0)); }else{ webContent += "";//插入结尾的直角 } }else{ if(checkChild(Integer.parseInt(rs.getString("cid")))){ webContent += "";//插入未结尾的减号 temp = (ArrayList)frontIcon.clone(); temp.add(new Integer(1)); }else{ webContent += "";//插入三叉线 } } if(checkChild(Integer.parseInt(rs.getString("cid")))){ webContent += " ";//插入文件夹图标 }else{ webContent += " ";//插入文件图标 } webContent += rs.getString("cname"); webContent += "\n"; webContent += showCategory(Integer.parseInt(rs.getString("cid")),n,temp,countCurrent+countChild); countChild++; } webContent += "\n"; DB.CloseRs(rs); DB.ClosePs(ps); DB.CloseConn(conn); }catch(Exception e){ e.printStackTrace(); } return webContent; } public boolean checkChild(int i){ boolean child = false; try{ Connection conn = DB.GetConn(); PreparedStatement ps = DB.GetPs("select * from category where pid = ?", conn); ps.setInt(1, i); ResultSet rs = DB.GetRs(ps); if(rs.next()){ child = true; } DB.CloseRs(rs); DB.ClosePs(ps); DB.CloseConn(conn); }catch(Exception e){ e.printStackTrace(); } return child; } } --------------------------------------------------------------------- tree.js文件 function changeState(countCurrent,countChild){ var object = document.getElementById("level" + countCurrent + countChild); if(object.style.display=='none'){ object.style.display='block'; }else{ object.style.display='none'; } var cursor = document.getElementById("cursor" + countCurrent + countChild); if(cursor.src.indexOf("images/tree_minus.gif")>=0) {cursor.src="images/tree_plus.gif";} else if(cursor.src.indexOf("images/tree_minusbottom.gif")>=0) {cursor.src="images/tree_plusbottom.gif";} else if(cursor.src.indexOf("images/tree_plus.gif")>=0) {cursor.src="images/tree_minus.gif";} else {cursor.src="images/tree_minusbottom.gif";} var folder = document.getElementById("folder" + countCurrent + countChild); if(folder.src.indexOf("images/icon_folder_channel_normal.gif")>=0){ folder.src = "images/icon_folder_channel_open.gif"; }else{ folder.src = "images/icon_folder_channel_normal.gif"; }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值