图书馆管理系统源代码 Visual Basic6.0环境下采用“自上而下地总体规划,自下而上地应用开发”的策略开发本系统的详细过程
上传时间: 2014-01-01
上传用户:asdkin
一个uCOS-II下的tcpip协议栈实现,可用于嵌入式系统的网络应用开发
上传时间: 2014-01-16
上传用户:清风冷雨
SystemC片上系统设计的源代码: 书籍介绍: SystemC是被实践证明的优秀的系统设计描述语言,它能够完成从系统到门级、从软件到硬件、从设计到验证的全部描述。SystemC 2.01已作为一个稳定的版本提交到IEEE,申请国际标准。 本书为配合清华大学电子工程系SystemC相关课程的教学而编写。全书分9章,内容包括:硬件描述语言的发展史;SystemC出现的历史背景和片上系统设计方法学概述;SystemC的基本语法;SystemC的寄存器传输级设计和SystemC的可综合语言子集,以及根据作者设计经历归结的RTL设计准则和经验;接口、端口和通道等SystemC行为建模实例——片上总线系统;SystemC与VHDL/Verilog HDL的比较;SystemC的验证标准和验证方法学;SystemC开发工具SystemC_win、WaveViewer等,以及使用MATLAB进行SystemC算法模块的验证。每一章都精心编写了课后习题以配合教学的需要。 本书可作为大学电子设计自动化(EDA)相关课程教材,也可供电子工程技术人员作为SystemC设计、应用开发的技术参考书。本书丰富的实例源代码特别适合初学者根据内容实际运行、体会,举一反三,以掌握SystemC进行应用系统设计。
上传时间: 2014-11-29
上传用户:qoovoop
jbuilder精髓第九章pdf文件,共22页,内容简单Web Services 应用开发
标签: jbuilder
上传时间: 2013-12-16
上传用户:dianxin61
游戏,看看今年游戏的火爆劲头,大家可体会到它的无穷魅力。越来越多的程序员加入到游戏开发这个行业中来。而且游戏开发本身是种很大的乐趣与挑战。 本系列就是利用 Java 这门语言教大家一步一步学习游戏开发,领会 Java 游戏开发的每一个技术要点。让大家都能灵活使用 Java 这门语言工具,都能用 Java 打造属于自己的游戏。是本系列的最终目的。 有过 Java 经验的朋友一定会奇怪,在 Java 企业级应用(J2EE)和 Java 移动应用(J2ME)横行 Java 天下的时候,我们为什么选择了 Java 游戏开发?原因很简单,游戏开发主要是利用 J2SE 技术,而 J2EE、J2ME 都是在 J2SE 的基础上发展起来的,也必须依托 J2SE 而存在,三者是相辅相成的。J2SE 是基础,万丈高楼平地起,只要你的基础打好了,有什么程序不能做呢?而在 J2SE 上也有很多成功的应用开发。你甚至能很方便的把你开发的游戏程序移植到上面两个应用方向中去。 好了,带上你的信心和决心,和我们一起走向这奇妙之旅吧。
标签:
上传时间: 2015-05-04
上传用户:qq1604324866
Fidelix资料(手机模块),包括FD800,FD810,FD5105A,包括参考源理图,带手机tcpip应用开发资料,无密码
上传时间: 2013-12-12
上传用户:zhangyi99104144
数字运算,判断一个数是否接近素数 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no
上传时间: 2015-05-21
上传用户:daguda
J2ME核心类及MIDlet类 MIDP用户界面对象 图形处理及低级事件处理 多线程编程 I/O及网络编程 数据库RMS编程 浮点数编程 多媒体及GAME API编程 安全、加密及代码优化 扩展类库及供应商提供的API 与服务端联合搭建移动应用 XML 及Web Service编程 短信编程 各种移动平台的应用开发
上传时间: 2015-06-08
上传用户:wangyi39
源代码\用动态规划算法计算序列关系个数 用关系"<"和"="将3个数a,b,c依次序排列时,有13种不同的序列关系: a=b=c,a=b<c,a<b=v,a<b<c,a<c<b a=c<b,b<a=c,b<a<c,b<c<a,b=c<a c<a=b,c<a<b,c<b<a 若要将n个数依序列,设计一个动态规划算法,计算出有多少种不同的序列关系, 要求算法只占用O(n),只耗时O(n*n).
上传时间: 2013-12-26
上传用户:siguazgb
The government of a small but important country has decided that the alphabet needs to be streamlined and reordered. Uppercase letters will be eliminated. They will issue a royal decree in the form of a String of B and A characters. The first character in the decree specifies whether a must come ( B )Before b in the new alphabet or ( A )After b . The second character determines the relative placement of b and c , etc. So, for example, "BAA" means that a must come Before b , b must come After c , and c must come After d . Any letters beyond these requirements are to be excluded, so if the decree specifies k comparisons then the new alphabet will contain the first k+1 lowercase letters of the current alphabet. Create a class Alphabet that contains the method choices that takes the decree as input and returns the number of possible new alphabets that conform to the decree. If more than 1,000,000,000 are possible, return -1. Definition
标签: government streamline important alphabet
上传时间: 2015-06-09
上传用户:weixiao99