搜索结果
找到约 113 项符合
Struct 的查询结果
按分类筛选
- 全部分类
- Java编程 (19)
- 其他 (14)
- 源码 (10)
- 数据结构 (8)
- 软件设计/软件工程 (5)
- 单片机编程 (3)
- 书籍源码 (3)
- Jsp/Servlet (3)
- Java书籍 (3)
- 操作系统开发 (3)
- Linux/Unix编程 (3)
- 技术书籍 (2)
- 数学计算 (2)
- 汇编语言 (2)
- 单片机开发 (2)
- 企业管理 (2)
- 压缩解压 (2)
- Linux/uClinux/Unix编程 (2)
- 习题答案 (2)
- 技术资料 (2)
- C/C++语言编程 (1)
- 文件格式 (1)
- 其他行业 (1)
- 电子书籍 (1)
- 编译器/解释器 (1)
- 系统设计方案 (1)
- SQL Server (1)
- matlab例程 (1)
- 游戏 (1)
- VC书籍 (1)
- 人工智能/神经网络 (1)
- 其他书籍 (1)
- 教育系统应用 (1)
- 文章/文档 (1)
- 数据库系统 (1)
- 驱动编程 (1)
- *行业应用 (1)
- JavaScript (1)
- 软件 (1)
- 书籍 (1)
- VIP专区 (1)
源码 12345
/****************temic*********t5557***********************************/   
#include &nbsp; <at892051.h> &nbsp; &nbsp;
#include &nbsp; <string.h> &nbsp;&nbsp;
#include &nbsp; <intrins.h> &nbsp; &nbsp;
#include &nbsp; <stdio.h> &nbsp; &nbsp;
#define &nbsp; &nbsp;uchar &nbsp; &nbsp;unsign ...
习题答案 单链表习题
链表习题
1.&nbsp;编程实现链表的基本操作函数。
(1). void CreatList(LinkList &La,int m)
//依次输入m个数据,并依次建立各个元素结点,逐个插入到链表尾;建立带表头结点的单链表La;
(2). void ListPrint(LinkList La)
&nbsp;//将单链表La的数据元素从表头到表尾依次显示。
(3).void&nbsp;ListInsert ...
习题答案 单链表习题
1.&nbsp;编程实现链表的基本操作函数。
(1). void CreatList(LinkList &La,int m)
//依次输入m个数据,并依次建立各个元素结点,逐个插入到链表尾;建立带表头结点的单链表La;
(2). void ListPrint(LinkList La)
&nbsp;//将单链表La的数据元素从表头到表尾依次显示。
(3).void&nbsp;ListInsert (LinkList ...
源码 数据结构实验
#include&nbsp;<stdio.h>&nbsp;&nbsp;
#include&nbsp;<stdlib.h>&nbsp;///链式栈&nbsp;&nbsp;
&nbsp;&nbsp;
typedef&nbsp;struct&nbsp;node&nbsp;&nbsp;
{&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;data;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;struc ...
源码 数据结构实验
#include <iostream>
#include <stdio.head>
#include <stdlib.head>
#include <string.head>
#define ElemType int
#define max 100
using namespace std;
typedef struct node1
{
ElemType data;
struct node1 *next;
}Node1,*LinkList;//链栈
typedef struct
{
ElemType *base;
int top;
}SqStack;// ...
源码 成绩查询系统
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define N 100
int iNumOfStu=0;
struct score
&nbsp;&nbsp;{
&nbsp;&nbsp;float math;
&nbsp;&nbsp;float english;
&nbsp;&nbsp;float computer;
&nbsp;&nbsp;};
struct student
&nbsp;&nbsp;{
&nbsp;&nbsp;int number ...
源码 学生成绩guanli
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define N 100
int iNumOfStu=0;
struct score
&nbsp;&nbsp;{
&nbsp;&nbsp;float math;
&nbsp;&nbsp;float english;
&nbsp;&nbsp;float computer;
&nbsp;&nbsp;};
struct student
&nbsp;&nbsp;{
&nbsp;&nbsp;int number ...
书籍 pid教程
pid控制
#ifndef _PID_H
#ifndef _PID_H
#ifdef _PID_C
&nbsp;&nbsp;&nbsp; #define PID_EXT
#else
&nbsp;&nbsp;&nbsp; #define PID_EXT extern
#endif
typedef struct PID
{
&nbsp;&nbsp; &nbsp;int SetPoint;
&nbsp;&nbsp; &nbsp;
&nbsp;&nbsp; &nbsp;unsigned char BitMove;
&nbsp;&nbsp; &nbsp;
&nbsp;&nbsp; &n ...
源码 二叉树子系统
#include<stdio.h>
#define TREEMAX 100
typedef struct&nbsp; BT
{
char data;
BT *lchild;
BT *rchild;
}BT;
BT *CreateTree();
void Preorder(BT *T);
void Postorder(BT *T);
void Inorder(BT *T);
void Leafnum(BT *T);
void Nodenum(BT *T);
int TreeDepth(BT *T);
int count=0;
void main()
{
BT *T=NULL;
char ...
源码 数组子系统
#include <stdio.h>
#include <stdlib.h>
#define SMAX 100
typedef struct SPNode
{
int i,j,v;
}SPNode;
struct sparmatrix
{
int rows,cols,terms;
SPNode data [SMAX];
};
sparmatrix CreateSparmatrix()
{
sparmatrix A;
printf("\n\t\t请输入稀疏矩阵的行数,列数和非零元素个数(用逗号隔开):");
scanf("%d, ...