Welcome![Sign In][Sign Up]
Location:
Search - tu

Search list

[Home Personal applicationge-ren-tu-shu-xin-xi-gyab-li-xi-tong

Description: 个人图书信息管理系统的程序代码,不错的程序。-personal library information management system code, it is true procedures.
Platform: | Size: 32768 | Author: 张琦 | Hits:

[Com PortSSCOMV3.0

Description: 极有用的调试工具,希望能给大家带来一点用处,恩,注意不要把它商业化,带来的问题自己解决-very useful debugging tool, we hope that they will bring some useful Tu, the attention it should not be commercialized, bring themselves to solve the problem
Platform: | Size: 281600 | Author: 王猛 | Hits:

[MiddleWaretuku

Description: 组态王图库开发包,包含例子。这是本人吐血奉献!组态王是一款工控领域的自动化软件,这个开发包是要付费才能获得的。-Kingview Gallery development kits, containing examples. This is my dedication to spit blood! A Kingview IPC is the area of automation software, development kits is to be obtained to pay.
Platform: | Size: 307200 | Author: zyc | Hits:

[source in ebookMysplit

Description: 种子填充算法用来在封闭曲线形成的环中填充某中颜色,在这里我们只填充黑色。种子填充其实上是图形学中的算法,其原理是:准备一个堆栈,先将要填充的点push进堆栈中;以后,每pop出一个点,将该点涂成黑色,然后按左上右下的顺序查看它的四个相邻点,若为白(表示还没有填充),则将该邻点push进栈。一直循环,直到堆栈为空。此时,区域内所有的点都被涂成了黑色。这里,我们自己定义了一些堆栈的数据结构和操作,实现了堆栈的初始化、push、pop、判断是否为空、及析构。 -seed filling algorithm used in a closed curve formed by a ring filled with color, here we only filled black. Seed is actually filled with graphics algorithm, and its tenet is : preparing a stack, Filling the first point to push into Stack; After each pop up a point, this point painted black. Press the left, then the right lower in the order View its four adjacent spots, and white (said that it had not yet filled), by being neighbors push into Stack. Has been circulating until the stack is empty. At this point, all the regional point has been Tu became black. Here, our own definition of a stack data structure and operations, the realization of the initial stack, push, pop, to determine whether the air, and destructors.
Platform: | Size: 205824 | Author: 蒋建军 | Hits:

[VOIP programevalvid-2.0.1

Description: 一个视频传输质量评估系统Evalvid.具体使用的方法见http://www.tkn.tu-berlin.de/research/evalvid/fw.html-a video transmission quality assessment system Evalvid. Specific use of the method see http :// www.tkn.tu-berlin.de/research/evalvid/ fw.html
Platform: | Size: 999424 | Author: 江雍 | Hits:

[Internet-NetworkIPADProject

Description: 很不错的小程序,本人初学VC恩 ,希望大家咄咄指教,有什么问题请与本人联系-quite small procedures, I novice TU VC, we hope that the aggressiveness enlighten, and what I question, please contact
Platform: | Size: 80896 | Author: li | Hits:

[Education soft systemtu_shu_guan_li_xi_tong

Description: 本系统定位于中小型图书馆或会员制书店,暂时考虑单机环境下的实现;操作系统选择目前常用的Windows 98/2000/xp。系统性质为MIS(管理信息系统)。 本系统采用会员制管理。系统界面力求简洁、易用,在标准化的基础上考虑界面的美观和新颖 图书资料管理:含图书资料的添加、修改等 图书查询:查询图书记录 借阅登记:登记会员ID、图书种类、借出时间、应归还时间等 归还登记:查看是否超时罚款,解除图书借阅状态, 管理人员管理:包含管理人员的创建、修改、删除等 会员管理:包含会员的创建、修改、删除等 售书记录查询:查询历次售书记录 图书检索:提供按图书的编号、书名、责任者、出版社等途径的检索-positioning of the system in small and medium-sized libraries or bookstores membership temporarily consider the single environment to achieve; choice of commonly used operating system Windows 98/2000/xp. System nature of MIS (management information system). The system adopts a membership system management. System interface concise, easy-to-use, standardized interface based on consideration of aesthetics and novelty books and information management : Books containing the information to add, modify, and other books inquiries : Inquiry record books to borrow registration : Registration ID, the types of books, lent time, the return time should return registration : to see whether a fine of overtime to lift the state to borrow books, management personnel management : includes management personn
Platform: | Size: 752640 | Author: 水依 | Hits:

[Button controlMyshapes

Description: yi ge hua tu chaung kou
Platform: | Size: 1904640 | Author: yuxin20604 | Hits:

[Othertu

Description: 简单的绘图编程 划直线水平线随手画直线椭圆位图-simple graphics programming is readily horizontally straight line drawing elliptical bitmap
Platform: | Size: 721920 | Author: 丹枫 | Hits:

[matlabrbfmatlab

Description: 经过测试,发现这个代码结果很好,而且可以 和别的程序结合,恩不错的-tested and found very good results this code, but can and other procedures, TU good
Platform: | Size: 1024 | Author: youyou | Hits:

[Othertu

Description: [输入] 图的顶点个数N,图中顶点之间的关系及起点A和终点B [输出] 若A到B无路径,则输出“There is no path” 否则输出A到B路径上个顶点 [存储结构] 图采用邻接矩阵的方式存储。 [算法的基本思想] 采用广度优先搜索的方法,从顶点A开始,依次访问与A邻接的顶点VA1,VA2,...,VAK, 访问遍之后,若没有访问B,则继续访问与VA1邻接的顶点VA11,VA12,...,VA1M,再访问与VA2邻接顶点...,如此下去,直至找到B,最先到达B点的路径,一定是边数最少的路径。实现时采用队列记录被访问过的顶点。每次访问与队头顶点相邻接的顶点,然后将队头顶点从队列中删去。若队空,则说明到不存在通路。在访问顶点过程中,每次把当前顶点的序号作为与其邻接的未访问的顶点的前驱顶点记录下来,以便输出时回溯。 #include<stdio.h> int number //队列类型 typedef struct{ int q[20] -[imported] map of the number of vertices N, Vertex map of the relationship between the starting point and end point A and B [output] if A to B without path then exporting "There is no path" Otherwise output A to B on the path vertices [storage structure] plan adopted adjacency matrix of storage. [Algorithm for the basic idea] BFS way from the vertex A, A visit followed with adjacent vertices VA1, VA2 ,..., VAK, visiting times, if not visit B, continue to visit with the VA1 adjacent vertices VA11, VA12 ,..., VA1M. VA2 and then visit the adjacent vertices ... and so on until finding B, the first to reach point B path, must be at least a few side paths. Queue used to achieve record was visited by the vertex. Each visit with the team atop the points are adjacent to the vertex, then t
Platform: | Size: 10240 | Author: Demonic | Hits:

[Otherwow

Description: henhao kan de tu,dajia douyaokankan a
Platform: | Size: 146432 | Author: aaaaaa | Hits:

[Web ServerERPv6.0

Description: 企业大型ERP软件 恩信科技刚刚推出的开源ERPv6.0 该产品在v5.30版本的基础上增加了很多功能: 1.运用了更多AJAX技术,全面支持事务处理,在易用性方面更是有很大突破,客户可以自定义个性化的工作桌面,可以设定工作任务提醒,支持审核工作流,支持ERP与门户网站完全集成等 2.支持当今绝大多数主流浏览器 3.具有实时备份系统; 4.支持恩信科技开源ERP开发管理插件; 5.支持Eclipse集成开发环境 6.新增加了电子商务、物流配送主功能模块。 -Large-scale enterprise ERP software TU letter just released open source technology ERPv6.0 in the v5.30 version of the product based on the increase in the number of functions: 1. Using more AJAX technology, full support for transaction processing, in the ease of use more there is an enormous breakthrough, customers can customize the personality of the work of the desktop, you can set to remind the mission work in support of audit workflow, support for ERP is fully integrated with the portal, etc. 2. in support of the overwhelming majority of today
Platform: | Size: 64275456 | Author: ljwfbf | Hits:

[GDI-BitmapHUA_TU

Description: 用MFC实现的几个画图 用MFC实现的几个画图 用MFC实现的几个画图-MFC realize with a few drawing using MFC realize several drawing using MFC realize several drawing
Platform: | Size: 51200 | Author: avagaskyT | Hits:

[Program docModbus_crc_c

Description: 】 本文主要讨论了Modbus 通信协议的R TU 帧格式中常用的错误校验方法,即循环冗余校验法( CRC) 。 提出了Modbus 协议反转CRC 校验的方法,推导了反转CRC 校验快速计算表格,并用C 语言实现了基于快速查 表算法的循环冗余校验程序。-In this paper, we mainly discuss the Modbus communication protocol R TU frame format commonly used in error checking methods, namely, Cyclic Redundancy Check Code (CRC). Modbus protocol proposed inversion method CRC checksum, CRC checksum is derived fast computing inversion table, and C language to achieve a quick look-up table algorithm based on cyclic redundancy check procedure.
Platform: | Size: 79872 | Author: xiaogao | Hits:

[FlashMX1090980686_aeon

Description: 为亿恩宣传做的flash源文件,可做网页素材-TU publicity for the billion to do the flash source files, web pages can be material
Platform: | Size: 454656 | Author: liuluhang | Hits:

[Other11

Description: 模糊控制理论与实践 电子书 涂承宇 地震出版社-Fuzzy Control Theory and Practice of e-books Tu承宇seismic Press
Platform: | Size: 5506048 | Author: 张鹏 | Hits:

[Otherxml-wfhxml

Description: 《xml-无废话》 学习XML的一本好书。 读者基础:最好先对HTML标注语有基本的认识,最好曾动手写过HTML的表格。书中对所有用作范例的HTML码,不作额外解释。-《 xml-无smoke习laugh out 》 cavity XML instance, linked the suspect书。 millet krypton suspect Recent Price Play To: Ke-Qin Pang Note HTML Catalpol price pegged to bleed at the nose cavity 认识Recent ,曾suspect hung写themis Toru HTML cavity barrels trace 。书中All bleed at the nose-Qin Yu Kan cavity using brazing tungsten , HTML brazing Tu Xiang释?。外
Platform: | Size: 1442816 | Author: 王字 | Hits:

[Internet-NetworkMakefile

Description: ns2 makefile ns2 makefile
Platform: | Size: 6144 | Author: | Hits:

[Othertu

Description: MATLAB图象处理程序,有图象的去糟,等等,为初学者提供参考-MATLAB image processing procedures, have images to go bad, and so on, provide a reference for beginners
Platform: | Size: 49152 | Author: 陈蕾 | Hits:
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 41 »

CodeBus www.codebus.net