搜索结果
找到约 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)
Java书籍 一本很好的学校JAVASTRUTS的书
一本很好的学校JAVASTRUTS的书,对于struct框架特别精辟的讲解!
其他 本系统是基于JAVA语言的办公系统
本系统是基于JAVA语言的办公系统,基于STRUCT框架
Linux/uClinux/Unix编程 两个链表的交集
两个链表的交集
#include<stdio.h>
#include<stdlib.h>
typedef struct Node{
&nbsp; int data;
&nbsp; struct &nbsp;Node *next;
}Node;
void initpointer(struct Node *p){
&nbsp; p=NULL;
}
int &nbsp;printlist(struct Node* head){
&nbsp; int flag=1;
&nbsp; head=head->next;
&nbsp; /*
&nbsp; 因为标记1的地 ...
技术书籍 c语言深度剖析
第一章关键字...................................................................................................................................9
1.1,最宽恒大量的关键字----auto..........................................................................................11
1.2,最快的关键字---- register. ...
单片机编程 舵机电机PID控制算法
#include <hidef.h>&nbsp; &nbsp;&nbsp; &nbsp;/*
common defines and macros */
#include "derivative.h"&nbsp; &nbsp;&nbsp; &nbsp;/*
derivative-specific definitions */
#include <mc9s12xs128.h>
//定义PID参数
#define VV_KPVALUE 3&nbsp; &nbsp;&nbsp; &nbsp; //比例
#define VV_KIVALUE 40&nbsp; &nbsp;&nbsp;&nbs ...
Linux/uClinux/Unix编程 struct
幫助學習作業系統的 一些資料 我需要獲得3的 積分 請有興趣者可看
源码 利用栈的基本操作实现将任意一个十进制整数N转化为R进制整数。
#include <stdlib.h>
#include<stdio.h>
#include <malloc.h>
#define stack_init_size 100
#define stackincrement 10
typedef struct sqstack
{
int *base;
int *top;
int stacksize;
} sqstack;
int StackInit(sqstack *s)
{
s->base=(int *)malloc(stack_init_size *sizeof(int));
if(!s->base)
return 0;
s->top=s->ba ...
源码 运动会源代码
#include&nbsp;<malloc.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
#include&nbsp;<stdio.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
#include&nbsp;<stdlib.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
#include&nbsp;<string.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
#define&nbsp;NULL&nbsp;0&nbsp;&nbsp; &nbsp;&nbsp ...
源码 c#简单计算器
// 学生管理.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "resource.h"
#define MAX_LOADSTRING 100
// Global Variables:
HINSTANCE hInst; // current instance
TCHAR szTitle[MAX_LOADSTRING]; // The title bar text
TCHAR szWindowClass[MAX_LOADSTRING]; ...
软件 简单的计算器
// 学生管理.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "resource.h"
#define MAX_LOADSTRING 100
// Global Variables:
HINSTANCE hInst; // current instance
TCHAR szTitle[MAX_LOADSTRING]; // The title bar text
TCHAR szWindowClass[MAX_LOADSTRING]; ...