搜索资源列表
doc
- 我的源码贵站都有,宁缺勿滥,用文档也可以吧,谢谢 1.C manual basic -->富士通的单片机C教育内部资料,觉得写的很好,方便查阅 2.华为公司编程语法规范--》有参考价值 3.华为PCB设计规范--》有参考价值 4.红外遥控器的编码资料--》英文版的写的很好 5.谭浩强C语言电子--》应该有人下吧 -I have the source贵站,宁缺勿滥, you can also use the document, thank you 1.C manual
xscjglxt
- 1 学生查询功能:为了方便学生查找成绩等信息,将所有信息按照需要进行分类。这样学生就能很方便的找到自己需要的信息。 2 添加功能:管理员可以通过填写表格的形式输入学生成绩等相关信息。系统可以自动避免重复信息。 3 修改功能:管理员可以对数据库中的信息进行修改。系统能够通过管理员给出的条件查找出所要修改的信息,对修改后的信息进行保存,并自动查找是否是重复信息。 4 删除功能:管理员可以对数据进行删除操作。系统能够通过管理员给出的条件查找出要删除的信息,并提示是否确定删除,如果确定删除,
magic357
- 魔術方陣3,5,7 可以映出魔術方陣-3,5,7 magic square magic square can be reflected
Nokiacablefinderv.3bysureshplaza
- 1.The content is too simple 2.Is not a sourcecode or document 3.lack of files 4.Directory or platform is not correct selected 5.Descr iption is not detailed 6.Compressed file has password 7.Sourcecode duplicate or already exist
CablesEnArVer10.3
- 1.The content is too simple 2.Is not a sourcecode or document 3.lack of files 4.Directory or platform is not correct selected 5.Descr iption is not detailed 6.Compressed file has password 7.Sourcecode duplicate or already exist
14496-2
- ISO 14498 -2 MPEG4规范中的音频和视频部分标准-INFORMATION TECHNOLOGY- CODING OF AUDIO-VISUAL OBJECTS: VISUAL ISO/IEC 14496-2 Committee Draft
Scope
- 定义一个抽象类Shape,含有抽象方法area(), 用于求图形的面积。 定义一个梯形类,继承抽象类Shape,梯形类的名称是Trapezia,类中有三个成员变量分别表示上底、下底、高; 定义一个带参数的构造函数完成对三个成员变量的初始化; 方法area()来计算梯形的面积; 定义一个main主方法创建一个梯形对象,并把该梯形对象的三个成员变量初始化为3、5和2.4,完成该梯形对象的面积的计算并把面积显示出来。显示格式自己定义。-import java.lang.*
1
- 输入行数,打印 n行的一个由数字组成的三角形,三角型如下 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1 1 2 3 4 5 4 3 2 1 1 2 3 4 5 6 5 4 3 2 1 1 2 3 4 5 6 7 6 5 4 3 2 1 1 2 3 4 5 6 7 8 7 6 5 4 3 2 1 1 2 3 4 5 6 7 8 9 8 7 6 5 4 3 2 1 -Input line number, print n lin
2
- 1) 实现对两个文件数据进行合并,生成新文件3.txt 2) 抽取出三科成绩中有补考的学生并保存在一个新文件4.txt 3) 对合并后的文件3.txt中的数据按总分降序排序(至少采用两种排序方法实现) 4) 输入一个学生姓名后,能查找到此学生的信息并输出结果(至少采用两种查找方法实现) 5) 要求使用结构体,链或数组等实现上述要求. 6) 采用多种方法且算法正确者,可适当加分. -1) The realization of the merger of the two
beibao
- 假设有一个能装入总体积为T的背包和n件体积分别为w1 , w2 , … , wn 的物品,能否从n件物品中挑选若干件恰好装满背包,即使w1 +w2 + … + wn=T,要求找出所有满足上述条件的解。例如:当T=10,各件物品的体积{1,8,4,3,5,2}时,可找到下列4组解:(1,4,3,2) (1,4,5) (8,2) (3,5,2)。 提示:可利用回溯法的设计思想来解决背包问题。首先将物品排成一列,然后顺序选取物品装入背包,假设已选取了前i 件物品之后背包还没有装满,则继
12232F-5-SYG-3[1].3V
- 12232F-5-SYG-3.3V说明书-12232F-5-SYG-3.3V manual
ASP.NET-3.5-for-Dummies-(SourceCode)
- ASP.NET 3.5 源代码上传给需要的朋友们.需要的来看看也无妨.-just for the asp.net beginners.
Delac_Grgic_Face_Recognition
- We can group the conclusions based on a level of compression and the probe sets into two parts: i) higher compression rates (0.5, 0.3 and in some cases even 0.2 bpp) seem to be suitable for recognizing faces with different expressions ( fb prob
fractal-use
- 分形的练习一 ①Koch曲线 用复数的方法来迭代Koch曲线 clear i 防止i被重新赋值 A=[0 1] 初始A是连接(0,0)与(1,0)的线段 t=exp(i*pi/3) n=2 n是迭代次数 for j=0:n A=A/3 a=ones(1,2*4^j) A=[A (t*A+a/3) (A/t+(1/2+sqrt(3)/6*i)*a) A+2/3*a] end plot(real(A),imag(A)) axis([0 1 -
java_code_2
- 有一分数序列:2/1,3/2,5/3,8/5,13/8,21/13...求出这个数列的前20项之和。 -There are a sequence of Score: 2/1, 3/2, 5/3, 8/5, 13/8, 21/13 ... determined number column 20 and.
example4
- 题目:输入某年某月某日,判断这一天是这一年的第几天? 1.程序分析:以3月5日为例,应该先把前两个月的加起来,然后再加上5天即本年的第几天,特殊 情况,闰年且输入月份大于3时需考虑多加一天。-Title: enter a certain period of a day, judgment day is the first few days of the year? Program analysis: March 5, for example, before the first
HSD050IDW1-v2.3
- 5寸液晶屏数据手册 HSD050IDW1-A formal specification v2.3-5 "LCD data sheet HSD050IDW1-A formal specification v2.3
OLED
- oled屏幕的驱动 用于stm32平台 oled测试接线图 GNG -GND VCC -3.3V~5.0V SCL -PA5 SDA -PA6 RST -PA7 D/C -PA12- drive oled oled screen test platform for stm32 wiring diagram GNG - GND VCC - 3.3V ~ 5.0V SCL - PA5 SDA - PA6 RST - PA7
OralTest_-Group7
- elecommunication occurs when the exchange of information between two entities (communication) includes the use of technology. Communication technology uses channels to transmit information (as electrical signals), either over a physical medium (such
Genetic-Algorithm-Example
- Genetic Algorithm Example The equation that I solve here is Gandhi Manalu. f(x,y) = (2.8125-x*(1.0-y**4))**2+(2.25-x*(1.0-y**2))**2+(1.5-x*(1.0-y))**2 Expected answer is f(3.0,0.5)=0.0 -Genetic Algorithm Example The equation that