搜索结果
找到约 538 项符合
DBT-Q 的查询结果
书籍 集中器本地通信模块接口协议
本系列标
准分为下列标准:
Q/GDW **1-2009 电力用户用电信息采集系统 功能规范
Q/GDW **2-2009 电力用户用电信息采集系统 专变采集终端技术规范
Q/GDW **3-2009 电力用户用电信息采集系统 集中抄表终端技术规范
Q/GDW **4-2009 电力用户用电信息采集系统 通信单元技术规范
Q/GDW **5-2009 电力用户用电信息采集系统 专变采 ...
源码 c语言算法排序
1.Describe a Θ(n lg n)-time algorithm that, given a set S of n integers and
another integer x, determines whether or not there exist two elements in S whose sum is exactly x. (Implement exercise 2.3-7.)
#include<stdio.h>
#include<stdlib.h>
void merge(int arr[],int low,int mid,int high){
&nbsp; ...
源码 学生管理系统
运行:
需要连接数据库,本人用的SQL2008R2,使用其更改版本导入就行
com.operate.main 包 Main.java 为主函数接口
PS:如果beautyeye_lnf.jar包报错,导入其lib目录下的对应包即可
登录:
管理员-- 帐号;密码 :admin;1 &nbsp;或者 &nbsp;1;1
学 &nbsp;生-- 帐号;密码 :01001;01001
数据库:
com.means.sql 包 SqlKey.java ...
手册 CCS41、CTS41系列宇航级片式多层瓷介电容器
CCS41、CTS41系列宇航级片式多层瓷介电容器。
执行标准
总规范:GJB4157-2001《高可靠瓷介固定电容器总规范》
详细规范:ZZR-Q/HJ20001A-2007《CCS41型宇航级无引线片式1类多层瓷介固定电容器详细规范》ZZR-Q/HJ20002A-2007《CTS41型宇航级无引线片式2类多层瓷介固定电容器详细规范》
标准确认号:JLCH59100039A,J ...
手册 三菱Q系列以太网模块用户手册
三菱PLC以太网模块详细操作手册,值得阅读
源码 数据结构实验
#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;// ...