资源简介
算法精解:C语言描述(中文版 含随书源码)
代码片段和文件信息
/*****************************************************************************
* *
* ex-1.c *
* ====== *
* *
* Description: Illustrates using a binary search tree (see Chapter 9). *
* *
*****************************************************************************/
#include
#include
#include
#include “bistree.h“
/*****************************************************************************
* *
* Define the size of strings. *
* *
*****************************************************************************/
#define STRSIZ 6
/*****************************************************************************
* *
* ---------------------------- preorder_tree ----------------------------- *
* *
*****************************************************************************/
static void preorder_tree(const BiTreeNode *node) {
/*****************************************************************************
* *
* Display the binary search tree rooted at the specified node. *
* *
*****************************************************************************/
if (!bitree_is_eob(node)) {
fprintf(stdout “Node=%s %+2d hidden=%d\n“ (char *)((AvlNode *)
bitree_data(node))->data ((AvlNode *)bitree_data(node))->factor
((AvlNode *)bitree_data(node))->hidden);
if (!bitree_is_eob(bitree_left(node)))
preorder_tree(bitree_left(node));
if (!bitree_is_eob(bitree_right(node)))
preorder_tree(bitree_right(node));
}
return;
}
/*****************************************************************************
* *
* ------------------------------ compare_str ----------------------------- *
* *
*****************************************************************************/
static int compare_str(const void *str1 const void *str2) {
int retval;
/**********************************************
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-08-08 11:01 [中译本][算法精解:C语言描述]源代码\
目录 0 2014-09-09 19:25 [中译本][算法精解:C语言描述]源代码\examples_pc\
文件 3462 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\README
文件 2627 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\contents
目录 0 2001-10-31 11:14 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\
目录 0 2014-09-09 19:25 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\bistree\
文件 4849 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\bistree\bistree.mak
文件 13157 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\bistree\ex-1.c
目录 0 2014-09-09 19:25 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\bit\
文件 4749 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\bit\bit.mak
文件 5782 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\bit\ex-1.c
目录 0 2014-09-09 19:25 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\bitree\
文件 4758 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\bitree\bitree.mak
文件 11786 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\bitree\ex-1.c
文件 110 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\checker
目录 0 2014-09-09 19:25 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\chtbl\
文件 4839 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\chtbl\chtbl.mak
文件 8649 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\chtbl\ex-1.c
目录 0 2014-09-09 19:25 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\clist\
文件 4741 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\clist\clist.mak
文件 5363 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\clist\ex-1.c
文件 3535 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\clist\ex-2.c
文件 4829 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\clist\page.mak
目录 0 2014-09-09 19:25 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\compress\
文件 5115 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\compress\compress.mak
文件 6001 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\compress\ex-1.c
文件 5983 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\compress\sample.txt
目录 0 2014-09-09 19:25 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\dlist\
文件 4746 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\dlist\dlist.mak
文件 6604 2000-05-16 07:17 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\dlist\ex-1.c
目录 0 2014-09-09 19:25 [中译本][算法精解:C语言描述]源代码\examples_pc\examples\encrypt\
............此处省略347个文件信息
相关资源
- 谭浩强C语言_pdf带目录完整清晰版.p
- MUSIC算法C语言+MATLAB
- c语言头文件库
- 51单片机C语言编程入门(详讲版)
- C语言实现的红外发送STM32F10x单片机应
- C语言程序设计(谭浩强)最终完整
- spiht算法小波图像编码算法
- C语言参考手册 第五版 PDF扫描无水印
- 谭浩强----C语言程序设计第二版高清晰
- VC++2012版Prim算法最小生成树动态演示
- C语言嵌入式系统编程修炼之道
- MSP430系列单片机实用C语言程序设计
- C语言 员工考勤系统 课程设计 源文件
- sm2算法签名验签实现
- 基于C语言 读取精密星历和广播星历并
- Sahni著《数据结构算法与应用——C+
- 单片机c语言应用100例完整配套光盘
- 单片机c语言应用100例完整配套光盘
- 单片机c语言应用100例完整配套光盘
- stm32L系列F系列 加密库Cryptographic lib
- C语言 vs2013+easyX 实现推箱子小游戏
- MFC邮件发送程序(C语言版带界面)
- 心率传感器算法-stm32-实测可用
- 数据结构 图的最小生成树 C++描述 使
- 轻松玩转51单片机c语言
- ldra c++ testbed 安装文档1
- 利用c语言实现FFT运算
- MFC可视化_迷宫算法_最短路径
- 电子科大12-17年计算机复试-笔试试题
- mfc数值微分算法和Bresenham算法画直线
评论
共有 条评论