代码搜索结果
找到约 10,000 项符合
9 的代码
algo9-9.cpp
// algo9-9.cpp 检验bo9-7.cpp的程序
#include"c1.h"
#define NULLKEY 0 // 0为无记录标志
#define N 10 // 数据元素个数
typedef int KeyType; // 设关键字域为整型
struct ElemType // 数据元素类型
{
KeyType key;
int ord;
hw9_9.java
//9-09
class Caaa
{
public int num1,num2;
void display()
{
System.out.println("print from Caaa class");
}
}
class Cbbb extends Caaa
{
void set_num(int a,int b)
{
app9_9.java
// app9_9, 用this来调用实例变量
class Caaa{
int num=10; // 这是实例变量
public void show(){
int num=5; // 这是局部变量
System.out.println("this.num="+this.num); // 输出实例变量
System.ou
quiz9_9.java
public class Quiz9_9 {
class A {
static int v;
private int w;
static final int x = 10;
transient int y;
final int z = 20;
}
}
algo9-9.cpp
// algo9-9.cpp 检验bo9-7.cpp的程序
#include"c1.h"
#define NULLKEY 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 NULLKEY 0 /* 0为无记录标志 */
#define N 10 /* 数据元素个数 */
typedef int KeyType; /* 设关键字域为整型 */
typedef struct
{
KeyType key;
int ord;
prg9_9.cpp
#include
#pragma hdrstop
#include "cnode.h"
#include "random.h"
// create circular linked list with given header node
void CreateList(CNode *header, int n)
{
// begin
9_9_2.c
/* ======================================== */
/* 程式实例: 9_9_2.c */
/* 线性探测法的哈希搜索 */
/* ======================================== */
#include
#
9_9_3.c
/* ======================================== */
/* 程序实例: 9_9_3.c */
/* 链表的散列查找 */
/* ======================================== */
#include
#i
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