代码搜索:SW
找到约 10,000 项符合「SW」的源代码
代码结果 10,000
www.eeworm.com/read/461110/7233566
cpp algo9-3.cpp
// algo9-3.cpp 静态查找表(静态树表)的操作,包括算法9.3、9.4
#include"c1.h"
#define N 9 // 数据元素个数
typedef char KeyType; // 设关键字域为字符型
struct ElemType // 数据元素类型
{
KeyType key; // 关键字
int weight; // 权值
www.eeworm.com/read/460608/7246229
c f93x_captouchsense_switch.c
//-----------------------------------------------------------------------------
// F93x_CapTouchSense_Switch.c
//-----------------------------------------------------------------------------
// Cop
www.eeworm.com/read/458268/7300000
cpp 静态树表的查找.cpp
//* * * * * * * * * * * * * * * * * * * * * * * *
//*CHAPTER :6 (6_3) *
//*PROGRAM :静态树表的查找 *
//*CONTENT :CreateSOSTree,Search *
//*
www.eeworm.com/read/458268/7300065
cpp 静态树表的查找.cpp
//* * * * * * * * * * * * * * * * * * * * * * * *
//*CHAPTER :6 (6_3) *
//*PROGRAM :静态树表的查找 *
//*CONTENT :CreateSOSTree,Search *
//*
www.eeworm.com/read/456942/7336423
cpp algo9-3.cpp
// algo9-3.cpp 静态查找表(静态树表)的操作
#include"c1.h"
#define N 9 // 数据元素个数
typedef char KeyType; // 设关键字域为字符型
struct ElemType // 数据元素类型(以教科书例9-1为例)
{
KeyType key;
int weight;
}r[N]={{'A',
www.eeworm.com/read/454932/7381675
cpp algo9-3.cpp
// algo9-3.cpp 静态查找表(静态树表)的操作
#include"c1.h"
#define N 9 // 数据元素个数
typedef char KeyType; // 设关键字域为字符型
struct ElemType // 数据元素类型(以教科书例9-1为例)
{
KeyType key;
int weight;
}r[N]={{'A',
www.eeworm.com/read/454633/7386415
cpp algo0903.cpp
Status SecondOptimal(BiTree &T, ElemType R[], float sw[],
int low, int high) { // 算法9.3
// 由有序表R[low..high]及其累计权值表sw
// (其中sw[0]==0)递归构造次优查找树T。
int i,j;
float m
www.eeworm.com/read/454633/7386417
cpp algo0904.cpp
typedef BiTree SOSTree; // 次优查找树采用二叉链表的存储结构
Status CreateSOSTree(SOSTree &T, SSTable ST) { // 算法9.4
// 由有序表ST构造一棵次优查找树T。ST的数据元素含有权域weight
float sw[20];
if (ST.length == 0) T = NULL;
www.eeworm.com/read/448997/7520400
cpp algo0903.cpp
Status SecondOptimal(BiTree &T, ElemType R[], float sw[],
int low, int high) { // 算法9.3
// 由有序表R[low..high]及其累计权值表sw
// (其中sw[0]==0)递归构造次优查找树T。
int i,j;
float m
www.eeworm.com/read/448997/7520402
cpp algo0904.cpp
typedef BiTree SOSTree; // 次优查找树采用二叉链表的存储结构
Status CreateSOSTree(SOSTree &T, SSTable ST) { // 算法9.4
// 由有序表ST构造一棵次优查找树T。ST的数据元素含有权域weight
float sw[20];
if (ST.length == 0) T = NULL;