代码搜索:自举升压结构
找到约 10,000 项符合「自举升压结构」的源代码
代码结果 10,000
www.eeworm.com/read/404041/11492293
txt 阿.txt
#include
#include
#include
#include
#include
typedef struct /*定义结构体数组*/
{
char num[10]; /*学号*/
char name[20]; /*姓名*/
int roomID; /*房
www.eeworm.com/read/400287/11579684
c filesys.c
#include
#include
#include
#include
#define FILENAME_LEN 21
#define INPUT_LEN 81
#define COMMAND_LEN 11
//结点结构
struct FileNode
{
char filena
www.eeworm.com/read/260947/11685195
cpp 10_87.cpp
#include
struct element
{ //定义节点结构
int val; //数据元素域
element *next; //链指针域
};
class list
{ //list类定义
element *elems; //elems为当前标识指针
public:
list(){elems=0;}
~list(); /
www.eeworm.com/read/156725/11782285
m medical.m
I = imread('rice.tif');
figure, imshow(I), title('原图');
BWs = edge(I, 'sobel', (graythresh(I) * .1));%边缘提取
figure, imshow(BWs), title('binary gradient mask');
se90 = strel('line', 3, 90);%建立结构函数