代码搜索结果

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

main6-6.c

/* main6-6.c 检验bo6-6.c的主程序 */ #define CHAR /* 字符型 */ /*#define INT /* 整型(二者选一) */ #include"c1.h" #ifdef CHAR typedef char TElemType; TElemType Nil=' '; /* 字符型以空格符为空 */ #endif #ifd

c6-6.cpp

#include using namespace std; int main() {void select_sort(int *p,int n); //函数声明 int a[10],i; double c=3.6,*q=&c; cout

bo6-6.cpp

// bo6-6.cpp main6-4.cpp和algo7-3.cpp调用 void PreOrderTraverse(CSTree T,void(*Visit)(TElemType)) { // 先根遍历孩子-兄弟二叉链表结构的树T if(T) { Visit(T->data); // 先访问根结点 PreOrderTraverse(T->firstchi

c6-6.cpp

#include using namespace std; int main() {void select_sort(int *p,int n); //函数声明 int a[10],i; double c=3.6,*q=&c; cout

xt6-6.cpp

#include using namespace std; int main() {int length(char *p); int len; char str[20]; coutstr; len=length(str); cout