代码搜索结果
找到约 10,000 项符合
6 的代码
proj6_6.asm
; PROJ6_6.ASM-
;
; An integer input routine.
;
dseg segment para public 'data'
; Put any variables you need here.
dseg ends
cseg segment para public 'code'
assume cs:cseg, ds:
ex6_6.ibm
; IBML Sample program #6.
; This code compares the execution
; time of the MUL instruction vs.
; various shift and add equivalents.
#repetitions 480000
#unravel 1
; The following check check
pgm6_6.asm
; String Instructions
.386 ;So we can use extended registers
option segment:use16 ; and addressing modes.
dseg segment para public 'data'
String1 byte "String",0
String2 byte 7 dup
chapter6-6.cpp
//文件名:CHAPTER6-6.cpp
#pragma warning(disable:4786)
#include
#include
using namespace std ;
typedef vector INTVECTOR;
void main()
{
INTVECTOR thevector;
thevec
bo6-6.c
/* bo6-6.c 二叉树的三叉链表存储(存储结构由c6-7.h定义)的基本操作(21个) */
Status InitBiTree(BiPTree *T)
{ /* 操作结果: 构造空二叉树T */
*T=NULL;
return OK;
}
void DestroyBiTree(BiPTree *T)
{ /* 初始条件: 二叉树T存在。操作结果:
c6-6.h
/* c6-6.h 二叉树的三叉链表存储表示 */
typedef struct BiTPNode
{
TElemType data;
struct BiTPNode *parent,*lchild,*rchild; /* 双亲、左右孩子指针 */
}BiTPNode,*BiPTree;
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
p6-6.c
#include
#include
#include
#include
void pr_exit(int status)
{
int sig;
if (WIFEXITED(status)) /* 正常终止的子进程 */
printf("normal terminat