代码搜索:自举升压结构
找到约 10,000 项符合「自举升压结构」的源代码
代码结果 10,000
www.eeworm.com/read/490797/6442498
h exam5.h
#include
#include"exam1.h"
#include"exam3.h"
#include
#include
using namespace std;
template
struct Tnode{ //森林的结点结构
T data;
Tnode *child,*brother;
www.eeworm.com/read/490813/6442739
h exam5.h
#include
#include"exam1.h"
#include"exam3.h"
#include
#include
using namespace std;
template
struct Tnode{ //森林的结点结构
T data;
Tnode *child,*brother;
www.eeworm.com/read/489657/6468633
c 3_16.c
/*----------例程3-16----------*/
#include
#include
#include
#include
#include
#include
/*文件头结构*/
typedef struct tagBITMA
www.eeworm.com/read/485824/6547647
cpp seqsearch.cpp
/************************************
* Copyright (c) 2008,LDCI
*
* 文件名称: SeqSearch.cpp
* 摘要:
* 使用 C 语言实现对顺序存储结构的线性表进行顺序查找算法
************************************/
#include
#include
www.eeworm.com/read/484166/6591959
cpp p1-70.cpp
#include
//定义结构
struct student {
char name[10];
float grade;
};
//交换student类型的数据
void swap(student &x,student &y) //swap的参数为引用传递方式
{
student temp;
temp
www.eeworm.com/read/482837/6614363
cpp p1-70.cpp
#include
//定义结构
struct student {
char name[10];
float grade;
};
//交换student类型的数据
void swap(student &x,student &y) //swap的参数为引用传递方式
{
student temp;
temp
www.eeworm.com/read/482102/6626743
h c3-2.h
/* c3-2.h 单链队列--队列的链式存储结构 */
typedef struct QNode
{
QElemType data;
struct QNode *next;
}QNode,*QueuePtr;
typedef struct
{
QueuePtr front,rear; /* 队头、队尾指针 */
}LinkQueue;
www.eeworm.com/read/480948/6654376
h c3-2.h
/* c3-2.h 单链队列--队列的链式存储结构 */
typedef struct QNode
{
QElemType data;
struct QNode *next;
}QNode,*QueuePtr;
typedef struct
{
QueuePtr front,rear; /* 队头、队尾指针 */
}LinkQueue;
www.eeworm.com/read/479650/6689796
cpp p1-70.cpp
#include
//定义结构
struct student {
char name[10];
float grade;
};
//交换student类型的数据
void swap(student &x,student &y) //swap的参数为引用传递方式
{
student temp;
temp
www.eeworm.com/read/478650/6712662
m ex0508.m
% EX0508 用try... catch... end结构来进行计算
n=4;
a=magic(n);
m=3;
b=eye(3);
try
c=a*b
catch
c=a(1:m,1:m)*b
end
lasterr