import?java.util.Iterator;
在安福等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務理念,為客戶提供成都做網(wǎng)站、成都網(wǎng)站設計 網(wǎng)站設計制作按需規(guī)劃網(wǎng)站,公司網(wǎng)站建設,企業(yè)網(wǎng)站建設,品牌網(wǎng)站制作,成都全網(wǎng)營銷,外貿(mào)網(wǎng)站制作,安福網(wǎng)站建設費用合理。
import?java.util.Random;
import?java.util.TreeSet;
public?class?Demo{
游輪?public?static?void?main(String[]?args)?throws?Exception?{
TreeSetInteger?ts?=?new?TreeSetInteger();
for(int?i?=?0;?i??10;?橋弊i++){
ts.add(new?Random().nextInt(999));
}
for(IteratorInteger?it?=?ts.iterator();?it.hasNext();){
System.out.println(it.next());
}
敏磨族}
}
//上面是利用TreeSet進行簡單的二叉樹實現(xiàn),另有遍歷,當然遍歷是自然順序。
//如有需要請自行修改吧。
當然在理論上是可以實現(xiàn)的,可以將所有的子文件都以樹形結(jié)構(gòu)出來,但是文件很多的時候就會非常糾結(jié)
我理解中的樹形結(jié)構(gòu)大概是這樣(不知道這樣的圖形是不是你想要的)
a
|
------------------
| | |
b c d
以下是代碼,找了系統(tǒng)盤下子文件較少的文件夾 C:/Windows/AppPatch,當然也可以換成你自己的路徑來測試
import java.io.File;
public class FileTree {
/**
* @param args
*/
public static void main(String[] args) {
try{
File file = new File("C:\\Windows\\AppPatch");
if(file.isDirectory()){
String[] fileList = file.list();
String fileName = file.getName();
int allLength = 0;
for(int i=0;ifileList.length;i++){
allLength += (fileList[i]+" ").length();
}
for(int i=0;iallLength/2;i++){
System.out.print("純激 ");
}
System.out.println(fileName);
for(int i=0;iallLength/2;i++){
System.out.print(" ");
}
for(int i=0;ifileName.length()/2;i++){
System.out.print(" ");
}
System.out.println("|");
for(int i=0;iallLength;i++){
System.out.print("-");
}
System.out.println("");
for(int i=0;ifileList.length;i++){
int tmpLength = fileList[i].length();
int subLength = tmpLength/2;
int lastLength = tmpLength - subLength - 1;
for(int j=0;jsubLength;j++){
System.out.print(" "做褲敬);
}
System.out.print("|");
for(int j=0;jlastLength;j++){
System.out.print("純慎 ");
}
System.out.print(" ");
}
System.out.println("");
for(int i=0;ifileList.length;i++){
System.out.print(fileList[i]+" ");
}
}
else{
System.out.println("對不起,你提供的路徑不是文件夾");
}
}
catch (Exception e) {
e.printStackTrace();
}
}
}
這時可以發(fā)現(xiàn)輸出每一個子文件/子文件夾的名字已經(jīng)比較長,要是再想輸出這些子文件夾里面的文件,那幅圖個人覺得相當糾結(jié),也許是我水平?jīng)]夠吧或是我理解錯了你說的樹形結(jié)構(gòu)
希望以上代碼對你有幫助
樹節(jié)點類:
package?cn點抗 .tree;??
public?class?Node?{??
private?Integer?id;??
private?Integer?parentId;??
private?String?name;??
private?String?link;??
public?Integer?getId()?{??
return?id;??
}??
public?void?setId(Integer?id)?{??
this.id?=?id;??
}??
public?Integer?getParentId()?{??
return?parentId;??
}??
public?void?setParentId(Integer?parentId)?{??
this.parentId?=?parentId;??
}??襪鍵碰
public?String?getName()?{??
return?name;??
}??
public?void?setName(String?name)?{??
this.name?=?name;??
}??
public?String?getLink()?{??
return?link;??
}??
public?void?setLink(String?link)?{??
this.link?=?link;??
}??
}
輸出樹形菜單類:
package?cn點抗 .tree;??
import?java.util.ArrayList;??
import?java.util.List;??
public?class?Tree?{??
private?StringBuffer?html?=?new?StringBuffer();??
private?ListNode?nodes;??
public?Tree(ListNode?nodes){??
this.nodes?=?nodes;??
}??
public?String?buildTree(){??
html.append("ul");??
for?(Node?node?:?nodes)?{??
Integer?id?=?node.getId();??
if?(node.getParentId()?==?null)?{??
html.append("\r\nli?id='"?+?id?+?"'"?+?node.getName()+?"/li");??
build(node);??
}??
}??
html.append("\r\n/ul");??
return?html.toString();??
}??
private?void?build(Node?node){??
ListNode?children?=?getChildren(node);??
if?(!children.isEmpty())?{??
html.append("\r\nul");??
for?(Node?child?:?children)?{??
Integer?id?=?child.getId();??
亮盯????????????告談???html.append("\r\nli?id='"?+?id?+?"'"?+?child.getName()+?"/li");??
build(child);??
}??
html.append("\r\n/ul");??
}???
}??
private?ListNode?getChildren(Node?node){??
ListNode?children?=?new?ArrayListNode();??
Integer?id?=?node.getId();??
for?(Node?child?:?nodes)?{??
if?(id.equals(child.getParentId()))?{??
children.add(child);??
}??
}??
return?children;??
}??
}
測試類:
package?zzj.test;??
import?java.util.ArrayList;??
import?java.util.List;??
import?cn點抗 .tree.Node;??
import?cn點抗 .tree.Tree;??
public?class?Test?{??
/**?
*?@param?args?
*/??
public?static?void?main(String[]?args)?{??
ListNode?nodes?=?new?ArrayListNode();??
Node?node1?=?new?Node();??
node1.setId(1);??
node1.setName("node1");??
node1.setParentId(null);??
node1.setLink(null);??
nodes.add(node1);??
Node?node11?=?new?Node();??
node11.setId(11);??
node11.setName("node11");??
node11.setParentId(1);??
node11.setLink(null);??
nodes.add(node11);??
Node?node111?=?new?Node();??
node111.setId(111);??
node111.setName("node111");??
node111.setParentId(11);??
node111.setLink(null);??
nodes.add(node111);??
Node?node12?=?new?Node();??
node12.setId(12);??
node12.setName("node12");??
node12.setParentId(1);??
node12.setLink(null);??
nodes.add(node12);??
Node?node2?=?new?Node();??
node2.setId(2);??
node2.setName("node2");??
node2.setParentId(null);??
node2.setLink(null);??
nodes.add(node2);??
Node?node21?=?new?Node();??
node21.setId(21);??
node21.setName("node21");??
node21.setParentId(2);??
node21.setLink(null);??
nodes.add(node21);??
Node?node3?=?new?Node();??
node3.setId(3);??
node3.setName("node3");??
node3.setParentId(null);??
node3.setLink(null);??
nodes.add(node3);??
Tree?tree?=?new?Tree(nodes);??
System.out.println(tree.buildTree());??
}??
}
package tree;
import java.util.LinkedList;
import java.util.List;
/**
* 功能:把一個數(shù)組的值存入二叉樹中,然后進行3種方式的遍歷
*
* 參考資料0:數(shù)據(jù)結(jié)構(gòu)(C語言版)嚴蔚敏
*
* 參考資料1:
*
* 參考資料2:
*
* @author ocaicai@yeah點虐 @date: 2011-5-17
*
*/
public class BinTreeTraverse2 {
private int[] array = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
private static ListNode nodeList = null;
/**
* 內(nèi)部類:節(jié)點
*
* @author ocaicai@yeah點虐 @date: 2011-5-17
*
*/
private static class Node {
Node leftChild;
Node rightChild;
int data;
Node(int newData) {
leftChild = null;
rightChild = null;
data = newData;
}
}
public void createBinTree() {
nodeList = new LinkedListNode();
// 將一個數(shù)組的值依次轉(zhuǎn)換為Node節(jié)點
for (int nodeIndex = 0; nodeIndex array.length; nodeIndex++) {
nodeList.add(new Node(array[nodeIndex]));
}
// 對前l(fā)astParentIndex-1個父節(jié)點按照父節(jié)點與孩子核卜陪節(jié)點的數(shù)弊歷字關系建立二叉樹
for (int parentIndex = 0; parentIndex array.length / 2 - 1; parentIndex++) {
// 左孩子
nodeList.get(parentIndex).leftChild = nodeList
.get(parentIndex * 2 + 1);
// 右孩子
nodeList.get(parentIndex).rightChild = nodeList
.get(parentIndex * 2 + 2);
}
// 最后一個父節(jié)點:因為最后一個父節(jié)點可能沒有右孩子,所以單獨拿出來處理
int lastParentIndex = array.length / 2 - 1;
// 左孩子
nodeList.get(lastParentIndex).leftChild = nodeList
.get(lastParentIndex * 2 + 1);
// 右孩子,如果數(shù)組的長度為奇數(shù)才建立右孩子改蠢
if (array.length % 2 == 1) {
nodeList.get(lastParentIndex).rightChild = nodeList
.get(lastParentIndex * 2 + 2);
}
}
/**
* 先序遍歷
*
* 這三種不同的遍歷結(jié)構(gòu)都是一樣的,只是先后順序不一樣而已
*
* @param node
* 遍歷的節(jié)點
*/
public static void preOrderTraverse(Node node) {
if (node == null)
return;
System.out.print(node.data + " ");
preOrderTraverse(node.leftChild);
preOrderTraverse(node.rightChild);
}
/**
* 中序遍歷
*
* 這三種不同的遍歷結(jié)構(gòu)都是一樣的,只是先后順序不一樣而已
*
* @param node
* 遍歷的節(jié)點
*/
public static void inOrderTraverse(Node node) {
if (node == null)
return;
inOrderTraverse(node.leftChild);
System.out.print(node.data + " ");
inOrderTraverse(node.rightChild);
}
/**
* 后序遍歷
*
* 這三種不同的遍歷結(jié)構(gòu)都是一樣的,只是先后順序不一樣而已
*
* @param node
* 遍歷的節(jié)點
*/
public static void postOrderTraverse(Node node) {
if (node == null)
return;
postOrderTraverse(node.leftChild);
postOrderTraverse(node.rightChild);
System.out.print(node.data + " ");
}
public static void main(String[] args) {
BinTreeTraverse2 binTree = new BinTreeTraverse2();
binTree.createBinTree();
// nodeList中第0個索引處的值即為根節(jié)點
Node root = nodeList.get(0);
System.out.println("先序遍歷:");
preOrderTraverse(root);
System.out.println();
System.out.println("中序遍歷:");
inOrderTraverse(root);
System.out.println();
System.out.println("后序遍歷:");
postOrderTraverse(root);
}
}