欢迎光临
我们一直在努力

数据结构与算法(C#实现)系列—演示篇(一)-.NET教程,数据库应用

建站超值云服务器,限时71元/月

数据结构与算法(c#实现)系列—演示篇(一)

heavenkiller(原创)

这一篇主要是针对以后各篇的数据类型进行一个实质性的演示。因此希望大家具体看了各种数据结构的分析之后再看这篇。

主要包括如下几个方面的演示:

1. 堆栈。 演示了一个利用堆栈作的rpn计算器

2. 排序表。演示了一个利用排序表做的多项式表达式的加法运算

3. 广义树。演示了深度遍历和广度遍历

4. n叉树。演示了n叉树的生成插入删除等基本操作

5. 表达式树。演示了一个用二叉树和堆栈做的可以将一个后缀表达式翻译为日常中熟悉的中缀表达式的例子

6. avl树。演示了基本操作

using system;

using system.collections;

namespace datastructure

{

/// <summary>

/// class1 的摘要说明。

/// </summary>

class show

{

/// <summary>

/// 应用程序的主入口点。

/// </summary>

[stathread]

static void main(string[] args)

{

//

// todo: 在此处添加代码以启动应用程序

//

while(true)

{

console.writeline("please choose a the no. of a item you want to perform:");

console.writeline("1.stack—– rpncalculator");

console.writeline("2.sortedlist—–the addition of polynomial realized by sortedlist ");

console.writeline("3.generaltree—-depthtravesal and breathtraval");

console.writeline("4.narytree");

console.writeline("5.expressiontree");

console.writeline("6.avltree");

console.writeline("7.binaryheap");

console.writeline("exit–exit this programme");

//test();

switch(console.readline())

{

case "1"://show stack

showstack_rpncalculator();

break;

case "2"://sortedlist

showsortedlist_polynomial();

break;

case "3":

showgeneraltree_travel();

break;

case "4":

shownarytree();//演示一个三叉树的attach和detach

break;

case "5":

showexpressiontree();

break;

case "6":

showavltree();

break;

case "7":

showbinaryheap();

break;

case "exit":

return;

default:

break;

}

}

}

public static void showbinaryheap()

{

//构造一个二叉堆, 包含2,4,6,8,10,12

binaryheap bheap=new binaryheap(10);

bheap.enqueue(12);

bheap.enqueue(10);

bheap.enqueue(8);

bheap.enqueue(6);

bheap.enqueue(4);

bheap.enqueue(2);

//测试dequeue();

while(bheap.count!=0)

{

console.writeline(bheap.dequeuemin().tostring());

}

}

public static void showavltree()

{

avltree testavl=new avltree(5);

testavl.insert(1);

testavl.insert(3);

testavl.insert(7);

testavl.insert(8);

testavl.insert(9);

testavl.insert(10);

testavl.insert(11);

printvisitor vis=new printvisitor();

tree.inorder invis=new datastructure.tree.inorder(vis);

testavl.depthfirsttraversal(invis);

}

public static void showexpressiontree()

{

expressiontree.postfixtoinfix();

}

public static void shownarytree()

{

//构造一个三叉树,具体见图1-2

narytree a=new narytree(3,"a");

narytree b=new narytree(3,"b");

narytree c=new narytree(3,"c");

narytree d=new narytree(3,"d");

narytree e=new narytree(3,"e");

b.attachsubtree(1,d);

b.attachsubtree(2,e);

a.attachsubtree(1,b);

a.attachsubtree(3,c);

//—————————

console.writeline("广度遍历");

printvisitor vis=new printvisitor();

a.breadthfirsttraversal(vis);//广度遍历

console.writeline("前序遍历");

tree.preorder previsit=new datastructure.tree.preorder(vis);

a.depthfirsttraversal(previsit);

console.writeline("后序遍历");

tree.postorder postvisit=new datastructure.tree.postorder(vis);

a.depthfirsttraversal(postvisit);

console.writeline("中序遍历");

tree.inorder invisit=new datastructure.tree.inorder(vis);

a.depthfirsttraversal(invisit);

}

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 数据结构与算法(C#实现)系列—演示篇(一)-.NET教程,数据库应用
分享到: 更多 (0)