代码搜索:自举升压结构
找到约 10,000 项符合「自举升压结构」的源代码
代码结果 10,000
www.eeworm.com/read/434701/7848649
dpr ko.dpr
library KO;
uses
SysUtils,strutils,windows;
{$R *.res}
type
//写卡数据结构
PWriteCardData = ^TWriteCardData;
TWriteCardData = record
Work_ID :LongInt; //厂商代码(最大2位十进制数字)
Prog_ID
www.eeworm.com/read/146224/12663058
txt c实现二叉树.txt
#include
#include
#include
#define max 30
#define queuesize 100
typedef char datatype;
typedef struct node{ /*定义二叉树链表结点结构*/
datatype data;
s
www.eeworm.com/read/146223/12663073
txt c实现二叉树.txt
#include
#include
#include
#define max 30
#define queuesize 100
typedef char datatype;
typedef struct node{ /*定义二叉树链表结点结构*/
datatype data;
s
www.eeworm.com/read/146222/12663091
txt c实现二叉树.txt
#include
#include
#include
#define max 30
#define queuesize 100
typedef char datatype;
typedef struct node{ /*定义二叉树链表结点结构*/
datatype data;
s
www.eeworm.com/read/145872/12698507
java app5_1.java
// app5_1,选择性结构
public class app5_1
{
public static void main(String args[])
{
int a=6,b=5;
System.out.println("a="+a+",b="+b);
if (a>b)
System.out.pri
www.eeworm.com/read/145155/12749147
cpp 航空客运定票系统.cpp
#include "iostream.h"
#include "string.h"
#include
#define MAX 100
//此结构体用来存储客户信息
typedef struct dkehu
{
char name[20]; //客户名
int count; //票数
struct dkehu *next;
www.eeworm.com/read/246158/12753275
cpp 2顺序表.cpp
#include
#define MaxSize 100
//顺序表存储结构的定义
struct seqlist
{
int data[MaxSize];
int last;
};
//顺序表的创建
seqlist* Create()
{
int a,i=0;
seqlist *p;
p=new seqlist;
cout
www.eeworm.com/read/143368/12881054
cpp ex12.cpp
///// 第12章 结 构 与 联 合
//// [例12.1]结构变量的内存与边界对齐效应
#include
void main (void)
{ struct S { char c; int k; } s ;
struct A { char c[9