代码搜索:L
找到约 10,000 项符合「L」的源代码
代码结果 10,000
www.eeworm.com/read/166006/10041876
bas l-4.bas
www.eeworm.com/read/166006/10041877
bas l-3.bas
www.eeworm.com/read/165890/10047798
cpp l61.cpp
#include
#include
//二叉树的链式存储表示
typedef char DataType; //应由用户定义DataType的实际类型
typedef struct node
{ DataType data;
struct node *lchild, *rchild; //左右孩子指针
} BinTNode;
www.eeworm.com/read/165890/10047799
cpp l92.cpp
#include
typedef int InfoType;
typedef enum {FALSE,TRUE} Boolean;
#define n 10 //假设的文件长度,即待排序的记录数目
typedef int KeyType; //假设的关键字类型
typedef struct { //记录类型
KeyType key;
www.eeworm.com/read/165890/10047815
cpp l94.cpp
#include
typedef int InfoType;
#define n 10 //假设的文件长度,即待排序的记录数目
typedef int KeyType; //假设的关键字类型
typedef struct { //记录类型
KeyType key; //关键字项
InfoType otherinfo; //其它数据
www.eeworm.com/read/165890/10047820
cpp l8.cpp
#include
#include
typedef int InfoType;
typedef int KeyType; //假定关键字类型为整数
typedef struct node //结点类型
{
KeyType key; //关键字项
InfoType otherinfo; //其它数据域,InfoTyp
www.eeworm.com/read/165890/10047858
cpp l95.cpp
#include
#include
typedef int InfoType;
#define n 10 //假设的文件长度,即待排序的记录数目
typedef int KeyType; //假设的关键字类型
typedef struct { //记录类型
KeyType key; //关键字项
InfoTyp
www.eeworm.com/read/165890/10047861
cpp l91.cpp
#include
typedef int InfoType;
#define n 10 //假设的文件长度,即待排序的记录数目
typedef int KeyType; //假设的关键字类型
typedef struct { //记录类型
KeyType key; //关键字项
InfoType otherinfo; //其它数据
www.eeworm.com/read/165890/10047866
cpp l62.cpp
#include
#include
#include
//Huffman树的存储结构
#define n 100 //叶子数目
#define m 2*n-1 //树中结点总数
typedef struct //结点类型
{ float weight; //权值,不妨设权值均大于零
www.eeworm.com/read/165890/10047868
cpp l2211.cpp
#include
#include
//顺序表的定义:
#define ListSize 100 //表空间大小可根据实际需要而定,这里假设为100
typedef int DataType; //DataType可以是任何相应的数据类型如int, float或char
typedef struct
{ DataType data[List