代码搜索结果
找到约 10,000 项符合
6 的代码
6_6.txt
/* LeafCount保存叶子结点的数目的全局变量,调用之前初始化值为0 */
void leaf_a(BiTree root)
{
if(root!=NULL)
{
leaf_a(root->LChild);
leaf_a(root->RChild);
if (root ->LChild==NULL && root ->RChild==NULL)
Leaf
6_6.txt
#include
typedef struct node{
int child;
struct node *next;
}Child;
typedef struct pnode{
int parent;
char data;
Child *headptr;
}Pnode;
searchnode(Pnode h[],int n,char ch)
6-6.m
x = -2.9:0.1:2.9;
y = randn(10000,1);
%生成一个随机的矩阵
hist(y,x)
title '笛卡儿坐标系下的直方图'
6_6.plg
Build Log
--------------------Configuration: 6_6 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\OOTTMA\LO