代码搜索:自举升压结构
找到约 10,000 项符合「自举升压结构」的源代码
代码结果 10,000
www.eeworm.com/read/378171/9249071
c phonebook_drv.c
//======================================================
// 文件名称: PhoneBook_Drv.c
// 功能描述: 通讯录数据结构操作函数集,用于插入、删除、修改通讯录条目
// 维护记录: 2006-09-20 v1.0
//=================================================
www.eeworm.com/read/180707/9297407
cpp ex12.cpp
///// 第12章 结 构 与 联 合
//// [例12.1]结构变量的内存与边界对齐效应
#include
void main (void)
{ struct S { char c; int k; } s ;
struct A { char c[9
www.eeworm.com/read/176757/9485192
htm index.htm
C++Builder技术专题 (BM: heiheihei)
BBS水木清华站∶精华区
本目录结构 heih
www.eeworm.com/read/366448/9812851
c 37.c
#include
#include
#define NUM 3
main( )
{
FILE *fp1; /*定义文件指针*/
char *temp;
int i,j;
struct rec{ /*定义结构体类型*/
char id[10];
char name[15];
www.eeworm.com/read/167183/9978860
cpp 01bag.cpp
/*
Copyright (c) 2006, Computing Center of IHEP, Beijing, China
*/
//0-1背包问题优先队列分枝限界算法
//#include "stdafx.h"
#include "iostream.h"
struct node{//结点表结点数据结构
node
www.eeworm.com/read/362111/10017841
c txl3.c
/*同学通讯录*/
#include
#include
struct friends/*定义数据结构*/
{
char name[20];/* 联系地址*/
char tel[12];
char e_mail[50];/*电子邮件*/
char a
www.eeworm.com/read/361541/10047341
cpp main.cpp
////////////////////////////////////////////////////////////////////////////////////////
//
// BP网络解决异或问题实例
//
// 本网络结构为三层BP网络,各层神经元个数可变,更改如下#define即可
//
// 所用函数和矩阵类都定义在functio
www.eeworm.com/read/360172/10107611
+
【例3.20】 结构对象初始化实例。
#include
using namespace std;
struct list {
char *name;
char *address;
int num[3];
} a={ ″Wang Ying″,″Shang Hai″,{82,79,85 } }; //别忘了分号
void main(){
cout