代码搜索结果

找到约 10,000 项符合 9 的代码

c9-9.cpp

#include using namespace std; class Box {public: Box(int=10,int=10,int=10); int volume(); private: int height; int width; int length; }; Box

xt9-9.cpp

#include using namespace std; class Product {public: Product(int n,int q,float p):num(n),quantity(q),price(p){}; void total(); static float average(); static void displa

例9-9 .m

I = imread('rice.png'); J = imread('cameraman.tif'); K = imadd(I,J,'uint16'); imshow(K,[])

9_9_2.c

/* ======================================== */ /* 程式实例: 9_9_2.c */ /* 线性探测法的哈希搜索 */ /* ======================================== */ #include #

9_9_3.c

/* ======================================== */ /* 程序实例: 9_9_3.c */ /* 链表的散列查找 */ /* ======================================== */ #include #i

algo9-9.cpp

// algo9-9.cpp 检验bo9-7.cpp的程序 #include"c1.h" #define NULL_KEY 0 // 0为无记录标志 #define N 10 // 数据元素个数 typedef int KeyType; // 设关键字域为整型 struct ElemType // 数据元素类型 { KeyType key; int ord

algo9-9.c

/* algo9-9.c 检验bo9-7.c的程序 */ #include"c1.h" #define NULL_KEY 0 /* 0为无记录标志 */ #define N 10 /* 数据元素个数 */ typedef int KeyType; /* 设关键字域为整型 */ typedef struct { KeyType key; int ord;

al9_9.c

/*案例代码文件名:AL9_9.C*/ /*程序功能:使用字符指针变量表示和引用字符串*/ main() { char *string="I love Beijing."; printf("%s\n",string); }