搜索结果: 系统搜索到约有16184项符合6的查询结果

  • 6.41.c

    6.41③ 编写递归算法,在二叉树中求位于先序序列中 第k个位置的结点的值。 要求实现下列函数: TElemType PreOrder(BiTree bt, int k); /* bt is the root node of a binary linked list, */ /* Preorder travel it and find the node whose */ /*

    http://www.codebf.com/read/332926/12716992

  • 6.45.c

    6.45④ 编写递归算法:对于二叉树中每一个元素值为x 的结点,删去以它为根的子树,并释放相应的空间。 要求实现下列函数: void ReleaseX(BiTree &bt, char x); /* Delete all subtrees whose root is */ /* the node which element value is x, */ /* then relea ...

    http://www.codebf.com/read/332926/12717006

  • 6.47.c

    6.47④ 编写按层次顺序(同一层自左至右)遍历二叉树的算法。 要求实现下列函数: void LevelOrder(BiTree bt, char *ss); /* travel BiTree bt by level, Return result by ss. */ 二叉链表类型定义: typedef char TElemType; // 设二叉树的元素为char类型 ty ...

    http://www.codebf.com/read/332926/12717021

  • 6.42.c

    6.42③ 编写递归算法,计算二叉树中叶子结点的数目。 要求实现下列函数: void Leaves(BiTree bt, int &x); /* Count the leaf node of the BiTree */ /* whose root node is bt to x. */ 二叉链表类型定义: typedef struct BiTNode {

    http://www.codebf.com/read/332926/12717031

  • 6.70.c

    6.70⑤ 如果用大写字母标识二叉树结点,则一棵 二叉树可以用广义表形式的字符序列表示。试写一 个递归算法,由这种形式的字符序列,建立相应的 二叉树的二叉链表存储结构。 要求实现以下函数: void BuildBiTree(BiTree &bt, char *s, int &i); /* 单遍扫描广义表形式的字符序列s, */ /* 建立相应的二叉树bt。 ...

    http://www.codebf.com/read/332926/12717038

  • 6.65.c

    6.65④ 已知一棵二叉树的前序序列和中序序列分别 存于两个一维数组中,试编写算法建立该二叉树的二 叉链表。 要求实现以下函数: void BuildBiTree(BiTree &bt, int ps, char *pre, int is, char *ino, int n); /* 当前要建立的子树bt的元素总数为n, ...

    http://www.codebf.com/read/332926/12717046

  • 6.40.c

    6.40③ 若在二叉链表的结点中只增设一个双亲域 以指示其双亲结点,则在遍历过程中能否不设栈? 试以此存储结构编写不设栈进行中序遍历的递推形 式的算法。 要求实现以下函数: void InOrder(BiPTree PT, void (*visit)(TElemType)) /* 不使用栈,非递归中序遍历二叉树bt, */ /* 对每个结点的元素域data调用函数visit ...

    http://www.codebf.com/read/332926/12717060

  • 6.3.spmat.txt

    6 3 3 2 3 2 3 1 1 2 2 1 1 1 2 3 3 4 4 5 6

    http://www.codebf.com/read/246011/12764878

  • excite.dat

    6 5.9958e+008 6.67134e-009

    http://www.codebf.com/read/328346/13033342

  • 6.1.lnp

    "6.1.3.obj" TO "6.1.3"

    http://www.codebf.com/read/326769/13118008