代码搜索:自举升压结构
找到约 10,000 项符合「自举升压结构」的源代码
代码结果 10,000
www.eeworm.com/read/315999/13532799
h c8-9.h
// c8-9.h Trie键树的存储结构。在教科书第250页
typedef struct TrieNode // Trie树类型
{ NodeKind kind;
union
{ struct
{ KeyType K;
Record *infoptr;
}lf; // 叶子结点
struct
{ Trie
www.eeworm.com/read/301648/13853150
c linkstack.c
#include
#include
#include
#define maxsize 100
//定义链栈的结构体
typedef struct node
{
int data;
struct node *next;
}*linkstack,stacknode;
//置空栈
linkstack
www.eeworm.com/read/300905/13881910
cn0 md.cn0
~aMKDIR~0 (MD)
创建目录。
使用~aMKDIR~0或MD命令可创建多级目录结构。
语法
~aMKDIR~0 [驱动器:]目录
~aMKDIR~0 [drive:]path
MD [驱动器:]目录
MD [drive:]path
www.eeworm.com/read/116678/6112838
bas modstruct.bas
Attribute VB_Name = "modStruct"
'打印数据网格控件 黄敬东
'自定义结构
Option Explicit
Public Type RECT
Left As Long
Top As Long
Right As Long
Bottom As Long
End Type
Public Type POINT
www.eeworm.com/read/186480/6334545
cpp p1-79.cpp
#include
//定义结构
struct student {
char name[10];
float grade;
};
//更改student数据的grade成员,参数形式为引用
void change(student &x,float grade)
{
x.grade=grade;
}
//更改stu
www.eeworm.com/read/490435/6456408
cpp disk_io.cpp
#include
#include
#include
#include
struct Disk //关于Disk结构的定义
{
HANDLE handle;
DISK_GEOMETRY disk_info;
};
Disk disk;
HANDLE Floppy;
www.eeworm.com/read/490030/6457489
frm attstrudlg.frm
VERSION 5.00
Object = "{90E45987-261F-4416-A3DF-90102A62977D}#1.0#0"; "AttStruEdit.ocx"
Begin VB.Form AttStruDlg
BorderStyle = 3 'Fixed Dialog
Caption = "浏览属性结构"
Client
www.eeworm.com/read/485824/6547649
cpp linklist.cpp
/************************************
* Copyright (c) 2008,LDCI
*
* 文件名称: LinkList.cpp
* 摘要:
* 使用 C 语言实现对链式存储结构的线性表(单链表)
* 时间:
* 2008-5-4
* 作者:
* 左建华
************************************/
www.eeworm.com/read/485824/6547651
cpp linearlist_c++.cpp
/************************************
* Copyright (c) 2008,LDCI
*
* 文件名称: LinearList_C++.cpp
* 摘要:
* 使用 C++ 语言实现对顺序存储结构的线性表
* 时间:
* 2008-6-10
* 作者:
* 左建华
************************************
www.eeworm.com/read/484166/6591901
cpp p1-79.cpp
#include
//定义结构
struct student {
char name[10];
float grade;
};
//更改student数据的grade成员,参数形式为引用
void change(student &x,float grade)
{
x.grade=grade;
}
//更改stu