锘??xml version="1.0" encoding="utf-8" standalone="yes"?>污黄色在线观看,麻豆影院在线观看,caoprom在线http://www.aygfsteel.com/dreamingnest/闈㈡湞澶ф搗路鏄ユ殩鑺卞紑zh-cnTue, 17 Jun 2025 18:44:45 GMTTue, 17 Jun 2025 18:44:45 GMT60- BFS鍜孌FS涓ょ鏂規硶鑾峰彇鎸囧畾鐩綍涓嬬殑鎵鏈夌洰褰曞拰鏂囦歡http://www.aygfsteel.com/dreamingnest/archive/2008/05/19/201424.htmldreamingnestdreamingnestMon, 19 May 2008 08:34:00 GMThttp://www.aygfsteel.com/dreamingnest/archive/2008/05/19/201424.htmlhttp://www.aygfsteel.com/dreamingnest/comments/201424.htmlhttp://www.aygfsteel.com/dreamingnest/archive/2008/05/19/201424.html#Feedback1http://www.aygfsteel.com/dreamingnest/comments/commentRss/201424.htmlhttp://www.aygfsteel.com/dreamingnest/services/trackbacks/201424.html紼嬪簭姣旇緝綆鍗曪紝BFS浣跨敤闃熷垪錛孌FS浣跨敤閫掑綊銆傝鑰呭彲浠ユ牴鎹渶瑕佹敼鍙樻墦鍗伴『搴忥紝鑰屼笖榪樺彲浠ヨ瘯鍥炬眰鍑烘寚瀹氱洰褰曚笅鐨勬煇涓鎵╁睍鍚嶇殑鏂囦歡鏁伴噺錛屾坊鍔犱竴鐐規鍒欒〃杈懼紡鐨勮鍙ャ?br />
import java.io.File;
import java.util.LinkedList;
import java.util.Queue;


public class BFS_SearchFiles
{

public static void main(String args[])
{
Queue<File> queue=new LinkedList<File>();
queue.add(new File("c:\\test"));

while(!queue.isEmpty())
{
File currentFile=(File)queue.poll();
System.out.println("璺緞 "+currentFile);
String[] s=currentFile.list();

for(int i=0;i<s.length;i++)
{
File d=new File(currentFile.getAbsolutePath()+File.separator+s[i]);
if(d.isFile())
System.out.println("鏂囦歡 "+d);
else if(d.isDirectory())
queue.add(d);
}
}
}
}

import java.io.File;


public class DFS_SearchFiles
{

public static void main(String args[])
{
DFS_SearchFiles.Search("c:\\test");
}

static void Search(String path)
{
File file=new File(path);

if(file.isDirectory())
{
System.out.println("鐩綍 "+file.getPath());
File[] files=file.listFiles();

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

if(files[i].isDirectory())
{
Search(files[i].getPath());
}
else if(files[i].isFile())
System.out.println("鏂囦歡 "+files[i]);
}
}
}
}


]]>- 鍫嗘爤瑙o紙闈為掑綊錛夊喅榪峰闂http://www.aygfsteel.com/dreamingnest/archive/2008/05/15/200619.htmldreamingnestdreamingnestThu, 15 May 2008 04:48:00 GMThttp://www.aygfsteel.com/dreamingnest/archive/2008/05/15/200619.htmlhttp://www.aygfsteel.com/dreamingnest/comments/200619.htmlhttp://www.aygfsteel.com/dreamingnest/archive/2008/05/15/200619.html#Feedback0http://www.aygfsteel.com/dreamingnest/comments/commentRss/200619.htmlhttp://www.aygfsteel.com/dreamingnest/services/trackbacks/200619.html闃呰鍏ㄦ枃

]]> - 鍏充簬铓傝殎闂錛圓nts錛?/title>http://www.aygfsteel.com/dreamingnest/archive/2008/05/10/199672.htmldreamingnestdreamingnestSat, 10 May 2008 03:28:00 GMThttp://www.aygfsteel.com/dreamingnest/archive/2008/05/10/199672.htmlhttp://www.aygfsteel.com/dreamingnest/comments/199672.htmlhttp://www.aygfsteel.com/dreamingnest/archive/2008/05/10/199672.html#Feedback7http://www.aygfsteel.com/dreamingnest/comments/commentRss/199672.htmlhttp://www.aygfsteel.com/dreamingnest/services/trackbacks/199672.html闃呰鍏ㄦ枃

]]> - 锝灺鋒壂闆峰皬娓告垙路锝?/title>http://www.aygfsteel.com/dreamingnest/archive/2008/05/08/199376.htmldreamingnestdreamingnestThu, 08 May 2008 15:22:00 GMThttp://www.aygfsteel.com/dreamingnest/archive/2008/05/08/199376.htmlhttp://www.aygfsteel.com/dreamingnest/comments/199376.htmlhttp://www.aygfsteel.com/dreamingnest/archive/2008/05/08/199376.html#Feedback0http://www.aygfsteel.com/dreamingnest/comments/commentRss/199376.htmlhttp://www.aygfsteel.com/dreamingnest/services/trackbacks/199376.html闃呰鍏ㄦ枃

]]> - 閫氳繃鎺掑簭鎬葷粨java娉涘瀷鏁扮粍鍒楄〃http://www.aygfsteel.com/dreamingnest/archive/2008/04/29/197337.htmldreamingnestdreamingnestTue, 29 Apr 2008 09:43:00 GMThttp://www.aygfsteel.com/dreamingnest/archive/2008/04/29/197337.htmlhttp://www.aygfsteel.com/dreamingnest/comments/197337.htmlhttp://www.aygfsteel.com/dreamingnest/archive/2008/04/29/197337.html#Feedback0http://www.aygfsteel.com/dreamingnest/comments/commentRss/197337.htmlhttp://www.aygfsteel.com/dreamingnest/services/trackbacks/197337.html闃呰鍏ㄦ枃

]]> - 鎵撳紑鏂囦歡錛屽皢鎵鏈夊皬鍐欏瓧姣嶅彉涓哄ぇ鍐欙紝騫跺瓨鍏ユ枃浠?/title>http://www.aygfsteel.com/dreamingnest/archive/2008/04/27/196422.htmldreamingnestdreamingnestSun, 27 Apr 2008 03:12:00 GMThttp://www.aygfsteel.com/dreamingnest/archive/2008/04/27/196422.htmlhttp://www.aygfsteel.com/dreamingnest/comments/196422.htmlhttp://www.aygfsteel.com/dreamingnest/archive/2008/04/27/196422.html#Feedback0http://www.aygfsteel.com/dreamingnest/comments/commentRss/196422.htmlhttp://www.aygfsteel.com/dreamingnest/services/trackbacks/196422.html闃呰鍏ㄦ枃

]]> - 銆庣鍥涚珷銆忛槦鍒楃殑鍩烘湰浣跨敤http://www.aygfsteel.com/dreamingnest/archive/2008/04/26/196215.htmldreamingnestdreamingnestSat, 26 Apr 2008 03:20:00 GMThttp://www.aygfsteel.com/dreamingnest/archive/2008/04/26/196215.htmlhttp://www.aygfsteel.com/dreamingnest/comments/196215.htmlhttp://www.aygfsteel.com/dreamingnest/archive/2008/04/26/196215.html#Feedback0http://www.aygfsteel.com/dreamingnest/comments/commentRss/196215.htmlhttp://www.aygfsteel.com/dreamingnest/services/trackbacks/196215.html闃呰鍏ㄦ枃

]]> - 銆庣鍥涚珷銆忔爤鐨勫簲鐢細鍗曡瘝閫嗗簭&鍒嗛殧絎﹀尮閰?/title>http://www.aygfsteel.com/dreamingnest/archive/2008/04/26/196214.htmldreamingnestdreamingnestSat, 26 Apr 2008 03:18:00 GMThttp://www.aygfsteel.com/dreamingnest/archive/2008/04/26/196214.htmlhttp://www.aygfsteel.com/dreamingnest/comments/196214.htmlhttp://www.aygfsteel.com/dreamingnest/archive/2008/04/26/196214.html#Feedback0http://www.aygfsteel.com/dreamingnest/comments/commentRss/196214.htmlhttp://www.aygfsteel.com/dreamingnest/services/trackbacks/196214.html闃呰鍏ㄦ枃

]]> - 銆庣鍥涚珷銆忔爤鐨勪嬌鐢?/title>http://www.aygfsteel.com/dreamingnest/archive/2008/04/26/196209.htmldreamingnestdreamingnestSat, 26 Apr 2008 03:09:00 GMThttp://www.aygfsteel.com/dreamingnest/archive/2008/04/26/196209.htmlhttp://www.aygfsteel.com/dreamingnest/comments/196209.htmlhttp://www.aygfsteel.com/dreamingnest/archive/2008/04/26/196209.html#Feedback0http://www.aygfsteel.com/dreamingnest/comments/commentRss/196209.htmlhttp://www.aygfsteel.com/dreamingnest/services/trackbacks/196209.html闃呰鍏ㄦ枃

]]> - 銆庣涓夌珷銆忓嚑縐嶆帓搴忕殑鍏抽敭浠g爜http://www.aygfsteel.com/dreamingnest/archive/2008/04/24/195758.htmldreamingnestdreamingnestThu, 24 Apr 2008 15:37:00 GMThttp://www.aygfsteel.com/dreamingnest/archive/2008/04/24/195758.htmlhttp://www.aygfsteel.com/dreamingnest/comments/195758.htmlhttp://www.aygfsteel.com/dreamingnest/archive/2008/04/24/195758.html#Feedback0http://www.aygfsteel.com/dreamingnest/comments/commentRss/195758.htmlhttp://www.aygfsteel.com/dreamingnest/services/trackbacks/195758.html闃呰鍏ㄦ枃

]]>
主站蜘蛛池模板:
运城市|
绥宁县|
昭通市|
和林格尔县|
横山县|
凌海市|
剑川县|
霍邱县|
古丈县|
临汾市|
莱阳市|
监利县|
田东县|
富川|
永昌县|
岗巴县|
札达县|
监利县|
七台河市|
岱山县|
长乐市|
房产|
平昌县|
漳州市|
乌鲁木齐市|
湘西|
宁夏|
巫山县|
泰兴市|
琼海市|
东海县|
荥经县|
文化|
东莞市|
瑞昌市|
贵阳市|
前郭尔|
邯郸县|
平乡县|
寿宁县|
诏安县|