代码搜索:自举升压结构

找到约 10,000 项符合「自举升压结构」的源代码

代码结果 10,000
www.eeworm.com/read/146694/12618158

cpp stru_sort02.cpp

//stru_sort02.cpp 结构数组排序 #include //cout,cin #include //random() #include //strlen() #include //setw() #include //getch
www.eeworm.com/read/247668/12634760

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/238131/13904858

c ip.c

#include #include #include "ethernet.h" #include "ip.h" #define IP_TTL 128 /* Time To Live for an outgoing IP datagram */ extern NODE locnode; //本机的节点信息结构
www.eeworm.com/read/134271/13999554

c 3bitree.c

#define NULL 0 #define OVERFLOW -2 #define OK 1 #define TRUE 1 #define FALSE 0 #define ERROR 0 #include /*栈的结构*/ typedef struct STNode{ int data; struct STNode *next; }STNode
www.eeworm.com/read/236390/14017637

m coding_xn.m

function Code=coding_xn(Probability) %香农编码 %Code :编码结果,以结构的形式表示 %Probability :编码概率 %输入概率判决 if sum(Probability)~=1 error('chech the Sum of probability.') end if ~isempty(find(Proba
www.eeworm.com/read/236381/14017820

txt coding_xn.txt

function Code=coding_xn(Probability) %香农编码 %Code :编码结果,以结构的形式表示 %Probability :编码概率 %输入概率判决 if sum(Probability)~=1 error('chech the Sum of probability.') end if ~isempty(find(Proba
www.eeworm.com/read/133753/14026892

cpp stru_sort01.cpp

//stru_sort01.cpp 结构数组排序 #include //cout,cin #include //random() #include //setw() #include //getch() const short N=10; struct
www.eeworm.com/read/133753/14026895

cpp stru_sort02.cpp

//stru_sort02.cpp 结构数组排序 #include //cout,cin #include //random() #include //strlen() #include //setw() #include //getch
www.eeworm.com/read/133600/14034071

cpp 仓库管理系统.cpp

#include #include #include #define NULL 0 #define LEN sizeof(dlnode) typedef struct dlnode /* 定义双向链表结构体 */ {int number; /* 货物编号 */ char name[10];
www.eeworm.com/read/235539/14064579

h c2-3.h

// c2-3.h 线性表的静态单链表存储结构 #define MAX_SIZE 100 // 链表的最大长度 typedef struct { ElemType data; int cur; }component,SLinkList[MAX_SIZE];