亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊(cè)

spring-<b>CODE</b>

  • palm編成,這種書很少,有興趣看看 Title: Palm Programming: The Developer s Guide URL: http://safari.oreilly.com/J

    palm編成,這種書很少,有興趣看看 Title: Palm Programming: The Developer s Guide URL: http://safari.oreilly.com/JVXSL.asp?x=1&mode=section&sortKey=rank&sortOrder=desc&view=book&xmlid=1-56592-525-4&open=false&srchText=palm+programming&code=&h=&m=&l=1&catid=&s=1&b=1&f=1&t=1&c=1&u=1&page=0 ISBN: 1-56592-525-4 Author: Julie McKeehan/ Neil Rhodes Publisher: O Reilly Page: 478 Edition: 1st edition (December 1998) Catalog: PDA programming / Palm Format: pdf Size: 2.06M Supplier: Summary: Emerging as the bestselling hand-held computers of all time, PalmPilots have spawned intense developer activity and a fanatical following. Used by Palm in their developer training, this tutorial-style book shows intermediate to experienced C programmers how to build a Palm application from the ground up. Includes a CD-ROM with source code and third-party developer tools

    標(biāo)簽: Programming Developer oreilly safari

    上傳時(shí)間: 2013-12-10

    上傳用戶:litianchu

  • crc任意位生成多項(xiàng)式 任意位運(yùn)算 自適應(yīng)算法 循環(huán)冗余校驗(yàn)碼(CRC

    crc任意位生成多項(xiàng)式 任意位運(yùn)算 自適應(yīng)算法 循環(huán)冗余校驗(yàn)碼(CRC,Cyclic Redundancy Code)是采用多項(xiàng)式的 編碼方式,這種方法把要發(fā)送的數(shù)據(jù)看成是一個(gè)多項(xiàng)式的系數(shù) ,數(shù)據(jù)為bn-1bn-2…b1b0 (其中為0或1),則其對(duì)應(yīng)的多項(xiàng)式為: bn-1Xn-1+bn-2Xn-2+…+b1X+b0 例如:數(shù)據(jù)“10010101”可以寫為多項(xiàng)式 X7+X4+X2+1。 循環(huán)冗余校驗(yàn)CRC 循環(huán)冗余校驗(yàn)方法的原理如下: (1) 設(shè)要發(fā)送的數(shù)據(jù)對(duì)應(yīng)的多項(xiàng)式為P(x)。 (2) 發(fā)送方和接收方約定一個(gè)生成多項(xiàng)式G(x),設(shè)該生成多項(xiàng)式 的最高次冪為r。 (3) 在數(shù)據(jù)塊的末尾添加r個(gè)0,則其相對(duì)應(yīng)的多項(xiàng)式為M(x)=XrP(x) 。(左移r位) (4) 用M(x)除以G(x),獲得商Q(x)和余式R(x),則 M(x)=Q(x) ×G(x)+R(x)。 (5) 令T(x)=M(x)+R(x),采用模2運(yùn)算,T(x)所對(duì)應(yīng)的數(shù)據(jù)是在原數(shù) 據(jù)塊的末尾加上余式所對(duì)應(yīng)的數(shù)據(jù)得到的。 (6) 發(fā)送T(x)所對(duì)應(yīng)的數(shù)據(jù)。 (7) 設(shè)接收端接收到的數(shù)據(jù)對(duì)應(yīng)的多項(xiàng)式為T’(x),將T’(x)除以G(x) ,若余式為0,則認(rèn)為沒有錯(cuò)誤,否則認(rèn)為有錯(cuò)

    標(biāo)簽: crc CRC 多項(xiàng)式 位運(yùn)算

    上傳時(shí)間: 2014-01-16

    上傳用戶:hphh

  • BG碼轉(zhuǎn)換程序是一個(gè)二進(jìn)制碼(Binary

    BG碼轉(zhuǎn)換程序是一個(gè)二進(jìn)制碼(Binary,簡稱 B碼)與格雷碼(Gray Code,簡稱G碼)相互轉(zhuǎn)換的軟件.

    標(biāo)簽: Binary 轉(zhuǎn)換 程序 二進(jìn)制碼

    上傳時(shí)間: 2014-12-19

    上傳用戶:hgy9473

  • DirectX not only provides fast access to the hardware and therefore incredibly speedy performance, b

    DirectX not only provides fast access to the hardware and therefore incredibly speedy performance, but it also makes it much easier for hardware developers to produce new devices that work well in the Windows environment. The DirectX APIs take away the necessity of writing your own low-level, device-specific code to access hardware such as the display adapter and network card, making it much easier for you to write programs that take full advantage of the computer s multimedia capabilities.

    標(biāo)簽: performance incredibly therefore hardware

    上傳時(shí)間: 2016-02-16

    上傳用戶:秦莞爾w

  • The "GEE! It s Simple" package illustrates Gaussian elimination with partial pivoting, which produce

    The "GEE! It s Simple" package illustrates Gaussian elimination with partial pivoting, which produces a factorization of P*A into the product L*U where P is a permutation matrix, and L and U are lower and upper triangular, respectively. The functions in this package are accurate, but they are far slower than their MATLAB equivalents (x=A\b, [L,U,p]=lu(A), and so on). They are presented here merely to illustrate and educate. "Real" production code should use backslash and lu, not this package.

    標(biāo)簽: illustrates elimination Gaussian pivoting

    上傳時(shí)間: 2016-11-09

    上傳用戶:wang5829

  • The "GEE! It s Simple" package illustrates Gaussian elimination with partial pivoting, which produce

    The "GEE! It s Simple" package illustrates Gaussian elimination with partial pivoting, which produces a factorization of P*A into the product L*U where P is a permutation matrix, and L and U are lower and upper triangular, respectively. The functions in this package are accurate, but they are far slower than their MATLAB equivalents (x=A\b, [L,U,p]=lu(A), and so on). They are presented here merely to illustrate and educate. "Real" production code should use backslash and lu, not this package.

    標(biāo)簽: illustrates elimination Gaussian pivoting

    上傳時(shí)間: 2014-01-21

    上傳用戶:lxm

  • Beginning Spring 2 源代碼

    Beginning Spring 2 源代碼,Beginning Spring Framework 2 - Source Code Update 12/16/07

    標(biāo)簽: Beginning Spring 源代碼

    上傳時(shí)間: 2013-12-18

    上傳用戶:561596

  • 人力資源管理系統(tǒng)

    人力資源管理系統(tǒng),主要用于企業(yè)的人事信息管理,考勤管理,招聘管理,培訓(xùn)管理,薪酬管理,績效管理。涉及到的業(yè)務(wù)主要有人事檔案信息的添加刪除和查看,人員調(diào)動(dòng)管理,員工的考勤管理,員工的招聘,員工的績效評(píng)估,薪酬計(jì)算和培訓(xùn)跟蹤。采用Java平臺(tái),并且采用B/S模式應(yīng)用, 框架與技術(shù)的選擇:Struts+Hibernate+Spring+Ajax。

    標(biāo)簽: 人力資源管理系統(tǒng)

    上傳時(shí)間: 2016-12-20

    上傳用戶:270189020

  • This document provides guidelines and describes how to easily port S60 2nd Edition C++ application

    This document provides guidelines and describes how to easily port S60 2nd Edition C++ applications to S60 3rd Edition. The document has been written based on experiences of porting regular S60 2nd Edition applications, such as the S60 Platform: POP/IMAP Example [4] that can be downloaded from Forum Nokia. Code snippets from the example are shown in Chapter 8, “Application build changes,” and in Appendix A, “Code example." In addition, Appendix B, "Commonly used functions that require capabilities," and Appendix C, "Commonly used interfaces that have been changed or removed," provide useful information on some frequently used functions and interfaces in third-party applications.

    標(biāo)簽: application guidelines describes document

    上傳時(shí)間: 2017-01-29

    上傳用戶:wang5829

  • 網(wǎng)頁采集系統(tǒng) ================= 安裝配置 ------- 1 程序我就不說了 2 配置文件 applicationContext.xml 里面有詳細(xì)的注釋 3 已經(jīng)

    網(wǎng)頁采集系統(tǒng) ================= 安裝配置 ------- 1 程序我就不說了 2 配置文件 applicationContext.xml 里面有詳細(xì)的注釋 3 已經(jīng)包含了多個(gè)論壇博客的參數(shù),如CSDN論壇、博客園、新浪博客、百度Hi、ccidnet等的解析參數(shù) 需要的類庫 --------- 1 Spring 2.5 2 common-logging 1.1 3 paoding-analysis 2.0.4-beta 4 commons-dbcp-1.2.2.jar 5 mysql-connector-java-5.1.7-bin.jar 6 commons-pool-1.4.jar 7 Lucene.2.4.0.jar 8 Lucene-highlighter-2.4.0.jar 9 java2000.jar 演示例子 ------- 本地:在com.laozizhu.search.demo目錄下面 B/S: http://search.laozizhu.com

    標(biāo)簽: applicationContext xml 采集系統(tǒng)

    上傳時(shí)間: 2017-04-07

    上傳用戶:牧羊人8920

主站蜘蛛池模板: 元阳县| 承德市| 台北市| 花莲县| 威信县| 繁昌县| 石门县| 青海省| 莲花县| 香河县| 宁河县| 宁武县| 泸州市| 扎囊县| 汨罗市| 海晏县| 会泽县| 阿拉尔市| 昆明市| 大埔区| 新建县| 五寨县| 丰顺县| 石棉县| 五河县| 安图县| 大名县| 沅陵县| 凤凰县| 苗栗县| 都兰县| 水城县| 新田县| 徐水县| 黄大仙区| 六枝特区| 庄河市| 定襄县| 蓬溪县| 玛多县| 连云港市|