虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Th<b>in</b>k<b>in</b>g

  • 一元稀疏多项式计算器的基本功能是: (1)输入并建立多项式; (2)输出多项式

    一元稀疏多项式计算器的基本功能是: (1)输入并建立多项式; (2)输出多项式,输出形式为整数序列:n,c1,e1,c2,e2,….,cn,en, 其中n是多项式的项数,ci和ei分别是第I项的系数和指数,序列按照指数降序排列; (3)多项式a和b相加,建立多项式a+b (4)多项式a和b相减,建立多项式a-b.

    标签: 多项式 稀疏 计算器 输入

    上传时间: 2016-10-25

    上传用户:时代电子小智

  • This document accompanies a sample co-installer that can be used in conjunction with an INF file to

    This document accompanies a sample co-installer that can be used in conjunction with an INF file to install additional device INF files on the target system during a device installation. The instructions herein apply to the Microsoft Windows 2000 and Windows XP and Windows Server 2003 operating systems. The sample co-installer described in this article interprets CopyINF directives in a [DDInstall] section in an INF file. The sample demonstrates using a co-installer to perform processing after a device has been installed, parsing the INF section that is being used for the installation, and the use of the SetupCopyOEMInf, SetupGetInfInformation, SetupQueryInfOriginalFileInformation and SetupDiGetActualSectionToInstall APIs.

    标签: co-installer accompanies conjunction document

    上传时间: 2014-02-28

    上传用户:gououo

  • 实现一位加法器的设计

    实现一位加法器的设计,假设输入参数为A,B,则输出为A,B的和

    标签: 加法器

    上传时间: 2017-01-02

    上传用户:baiom

  • This article presents GISCoordinate.java - a class that allows you to represent a GIS coordinate in

    This article presents GISCoordinate.java - a class that allows you to represent a GIS coordinate in your JAVA code in decimal degrees (38.4443, e.g. 122.33433) , minute degrees (33 44 22E, 122 33 44N), or radian degrees. Also, you can use this class to manipulate the coordinate, moving it around the globe by giving it distances in feet and direction of travel. You can then extract the new coordinate that is calculated after the travel.

    标签: GISCoordinate coordinate represent presents

    上传时间: 2013-12-02

    上传用户:wangchong

  • it is a verilog code written for FIFO in modelsim simulator and it will synthesize in xinlix ise 8

    it is a verilog code written for FIFO in modelsim simulator and it will synthesize in xinlix ise 8.2i.i have tested it om my kit.[i mae my own kit for spartan2 device].you can use this code in any DSP project in which data entry is required.

    标签: synthesize simulator modelsim verilog

    上传时间: 2014-06-26

    上传用户:zhuyibin

  • list is a data dtructure. this is a data structure type implemantation and it is implemented in C pr

    list is a data dtructure. this is a data structure type implemantation and it is implemented in C prgramming language. General header contains pointer to object so list.c in c is implemented in generic way.

    标签: data implemantation implemented dtructure

    上传时间: 2017-03-27

    上传用户:LIKE

  • 一道程序编译顺序的考题

    一道程序编译顺序的考题,涉及到函数调用的先后顺序及运算符号的优先级等问题。下面我展开给你讲。 C的程序编译总是从main函数开始的,这道题的重点在“fun((int)fun(a+c,b),a-c)) ”语句。 系统首先要确定最外层 fun()函数的实参,第一个参数的确定需要递归调用fun()函数(不妨称其为内层函数)。内层函数的两个参数分别为x=a+b=2+8=10、y=b=5,执行函数体x+y=10+5=15,于是得外层函数的参数x=15。其另一个参数y=a-c=2-b=-6,再次执行函数体,得最终返回值x+y=15+(-6)=9。

    标签: 程序编译

    上传时间: 2014-12-03

    上传用户:徐孺

  • 建立两个任务AB

    建立两个任务AB,A可以挂起B,同时也可以恢复B

    标签:

    上传时间: 2017-06-02

    上传用户:han_zh

  • 编写一个java应用程序。用户从键盘输入一个1-9999之间的数

    编写一个java应用程序。用户从键盘输入一个1-9999之间的数,程序将判断这个数是几位数,并判断这个数是否回文数。回文数是指将数含有的数字逆序排列后得到的数和原数相同,例如12121,4224,6778776等都是回文数。 1)程序具有判断用户的输入是否为合法整数的功能。对非法输入(例如含有字母)要进行处理。 2)要判断输入数的位数,并输出相关信息。 3)要判断是否回文数。 二、二战期间,英国情报人员获取德军的一机密电报,电报的内容为: bzdz izu sxgzd vs lh ,vpzg woflsh vs vwrh vhlsddlmp glm wrw gzy vsg .gflyz gstfzu bvsg gzsd hdmlp vml lm ,hghzvy wmz hwiry mvvdgvy izd z hzd vivsg ,ltz tmlo tmlO 情报人员已经知道,这段电报的加密方式为: 1. 首先将字符串的顺序颠倒。 2. 字母互换的规律为:A->Z, B-Y, C-X...X->C, Y->B, Z-A a->z, b->y, c-x...x->c, y->b, z->a. 3. 非字母字符保持不变。 请编程帮助情报人员破译这份机密电报。给出注释良好的源程序和程序运行后的结果。

    标签: java 9999 编写 应用程序

    上传时间: 2017-06-02

    上传用户:dengzb84

  • Tic tac toe is (exactly what re your thinking) and it s the first game I made. Made it in one whole

    Tic tac toe is (exactly what re your thinking) and it s the first game I made. Made it in one whole day in Turbo C. It uses primitive graphics drawing and also demonstrates how to output an image. Written in C, also uses a library I got from the net (included) for image output.

    标签: thinking exactly first whole

    上传时间: 2017-08-13

    上传用户:xhz1993