本文通过分析整合城市轨道交通信息的功能需求和各个业务子系统的结构特征,提出了基于组件技术COM/CORBA(组件对象模型/公共对象请求代理体系)的城市轨道交通信息共享系统。
上传时间: 2017-08-30
上传用户:bcjtao
第1章 假想的编译程序 第2章 自己设计并使用断言 第3章 为子系统设防 第4章 对程序进行逐条跟踪 第5章 糖果机界面 第6章 风险事业 第7章 编码中的假象 第8章 剩下来的就是态度问题
上传时间: 2017-09-01
上传用户:lanhuaying
传感器基站程序,用于无线传感网络,多跳传输的基站协议栈
上传时间: 2014-01-18
上传用户:lmeeworm
本系统是用pb开发的电力部门信息管理系统的一个子系统,主要是针对供电公司电能表的库房管理而设计开发的一个系统。本系统主要由库房管理、权限管理、用户管理、岗位管理等几个子系统构成。其中在库房管理中又分为:库房设置、计量资产管理、表计定位管理、条形码打印等几个子系统。
上传时间: 2017-09-09
上传用户:cc1
Linux中Input输入子系统分析(pdf)
标签: linux
上传时间: 2015-04-10
上传用户:zsp26414609
户户通奇骏 QW200.06埋基站工具,解决免定位收看户户通。
上传时间: 2018-11-22
上传用户:徜徉大海5
#include<stdio.h> #define TREEMAX 100 typedef struct 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 ch1,ch2,a; ch1='y'; while(ch1=='y'||ch1=='y') { printf("\n"); printf("\n\t\t 二叉树子系统"); printf("\n\t\t*****************************************"); printf("\n\t\t 1---------建二叉树 "); printf("\n\t\t 2---------先序遍历 "); printf("\n\t\t 3---------中序遍历 "); printf("\n\t\t 4---------后序遍历 "); printf("\n\t\t 5---------求叶子数 "); printf("\n\t\t 6---------求结点数 "); printf("\n\t\t 7---------求树深度 "); printf("\n\t\t 0---------返 回 "); printf("\n\t\t*****************************************"); printf("\n\t\t 请选择菜单号 (0--7)"); scanf("%c",&ch2); getchar(); printf("\n"); switch(ch2) { case'1': printf("\n\t\t请按先序序列输入二叉树的结点:\n"); printf("\n\t\t说明:输入结点(‘0’代表后继结点为空)后按回车。\n"); printf("\n\t\t请输入根结点:"); T=CreateTree(); printf("\n\t\t二叉树成功建立!\n");break; case'2': printf("\n\t\t该二叉树的先序遍历序列为:"); Preorder(T);break; case'3': printf("\n\t\t该二叉树的中序遍历序列为:"); Inorder(T);break; case'4': printf("\n\t\t该二叉树的后序遍历序列为:"); Postorder(T);break; case'5': count=0;Leafnum(T); printf("\n\t\t该二叉树有%d个叶子。\n",count);break; case'6': count=0;Nodenum(T); printf("\n\t\t该二叉树总共有%d个结点。\n",count);break; case'7': printf("\n\t\t该树的深度为:%d",TreeDepth(T)); break; case'0': ch1='n';break; default: printf("\n\t\t***请注意:输入有误!***"); } if(ch2!='0') { printf("\n\n\t\t按【Enter】键继续,按任意键返回主菜单!\n"); a=getchar(); if(a!='\xA') { getchar(); ch1='n'; } } } } BT *CreateTree() { BT *t; char x; scanf("%c",&x); getchar(); if(x=='0') t=NULL; else { t=new BT; t->data=x; printf("\n\t\t请输入%c结点的左子结点:",t->data); t->lchild=CreateTree(); printf("\n\t\t请输入%c结点的右子结点:",t->data); t->rchild=CreateTree(); } return t; } void Preorder(BT *T) { if(T) { printf("%3c",T->data); Preorder(T->lchild); Preorder(T->rchild); } } void Inorder(BT *T) { if(T) { Inorder(T->lchild); printf("%3c",T->data); Inorder(T->rchild); } } void Postorder(BT *T) { if(T) { Postorder(T->lchild); Postorder(T->rchild); printf("%3c",T->data); } } void Leafnum(BT *T) { if(T) { if(T->lchild==NULL&&T->rchild==NULL) count++; Leafnum(T->lchild); Leafnum(T->rchild); } } void Nodenum(BT *T) { if(T) { count++; Nodenum(T->lchild); Nodenum(T->rchild); } } int TreeDepth(BT *T) { int ldep,rdep; if(T==NULL) return 0; else { ldep=TreeDepth(T->lchild); rdep=TreeDepth(T->rchild); if(ldep>rdep) return ldep+1; else return rdep+1; } }
上传时间: 2020-06-11
上传用户:ccccy
该文档为LTE基站GPS失锁导致干扰优化案例简介文档,是一份很不错的参考资料,具有较高参考价值,感兴趣的可以下载看看………………
上传时间: 2021-11-19
上传用户:bluedrops
该文档为软件无线电在移动通信基站接收分系统中的实现简介文档,是一份很不错的参考资料,具有较高参考价值,感兴趣的可以下载看看………………
上传时间: 2021-11-27
上传用户:
该文档为FDD-LTE--LTE基站出现RRH瞬断故障案例的分析总结文档,是一份很不错的参考资料,具有较高参考价值,感兴趣的可以下载看看………………
标签: FDD-LTE
上传时间: 2021-12-04
上传用户: