代码搜索结果

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

a+b.cpp

#include #include char a[501],b[501],c[502],*x,*y; int p,t,k,s,max,min; inline int input(char *q) { if(scanf("%s", q) != 1) return 0;

ports.b

Ports List, part 2 of 3 Copyright (c) 1989-1999,2000 Ralf Brown ----------P0140014F-------------------------- PORT 0140-014F - SCSI (alternate Small Computer System Interface) adapter Note: first

interrup.b

Interrupt List, part 2 of 18 Copyright (c) 1989-1999,2000 Ralf Brown --------V-10BF--CX0000----------------------- INT 10 - Athena Digital HGCIBM.COM - INSTALLATION CHECK AH = BFh CX = 0000h (?

b-.cpp

#define M 3 /* B 树的阶,即非根节点中键的最小数目*/ typedef int typekey; typedef struct btnode { /* B-Tree 节点 */ int d; /* 节点中键的数目 */ typekey k[2*M]; /* 键 */ char *v[2*M]; /* 值 *