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

蟲(chóng)蟲(chóng)首頁(yè)| 資源下載| 資源專(zhuān)輯| 精品軟件
登錄| 注冊(cè)

導(dǎo)(dǎo)航地圖

  • 本書(shū)提供用J B u i l d e r開(kāi)發(fā)數(shù)據(jù)庫(kù)應(yīng)用程序、創(chuàng)建分布式應(yīng)用程序以及編寫(xiě)J a v a B e a n 組件的高級(jí)資料。它包括下列幾個(gè)部分: • 第一部分是“開(kāi)發(fā)數(shù)據(jù)庫(kù)應(yīng)用

    本書(shū)提供用J B u i l d e r開(kāi)發(fā)數(shù)據(jù)庫(kù)應(yīng)用程序、創(chuàng)建分布式應(yīng)用程序以及編寫(xiě)J a v a B e a n 組件的高級(jí)資料。它包括下列幾個(gè)部分: • 第一部分是“開(kāi)發(fā)數(shù)據(jù)庫(kù)應(yīng)用程序”,它提供關(guān)于使用J b u i l d e r的D a t a E x p r e s s數(shù)據(jù) 庫(kù)體系結(jié)構(gòu)的信息,并解釋原始數(shù)據(jù)組件和類(lèi)之間的相互關(guān)系,以及怎樣使用它 們來(lái)創(chuàng)建你的數(shù)據(jù)庫(kù)應(yīng)用程序。它還解釋怎樣使用Data Modeler(數(shù)據(jù)模型器)和 Application Generator(應(yīng)用程序生成器)創(chuàng)建數(shù)據(jù)驅(qū)動(dòng)的客戶機(jī)/服務(wù)器應(yīng)用程 序。 • 第二部分是“開(kāi)發(fā)分布式應(yīng)用程序”,它提供關(guān)于使用ORB Explorer、用J B u i l d e r 創(chuàng)建多級(jí)的分布應(yīng)用程序、調(diào)試分布式應(yīng)用程序、用J a v a定義C O R B A接口以及 使用s e r v l e t等的信息。 • 第三部分是“創(chuàng)建J a v a B e a n”,它解釋怎樣開(kāi)發(fā)新的J a v a B e a n組件,描述在組件 開(kāi)發(fā)中涉及的任務(wù), 怎樣使用B e a n s E x p r e s s創(chuàng)建新的J a v a B e a n,以及關(guān)于屬性、 事件、B e a nIn f o類(lèi)和其他方面的詳細(xì)情況。

    標(biāo)簽: 8226 數(shù)據(jù)庫(kù) 應(yīng)用程序

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

    上傳用戶:wpt

  • Floyd-Warshall算法描述 1)適用范圍: a)APSP(All Pairs Shortest Paths) b)稠密圖效果最佳 c)邊權(quán)可正可負(fù) 2)算法描述: a)初始化:d

    Floyd-Warshall算法描述 1)適用范圍: a)APSP(All Pairs Shortest Paths) b)稠密圖效果最佳 c)邊權(quán)可正可負(fù) 2)算法描述: a)初始化:dis[u,v]=w[u,v] b)For k:=1 to n For i:=1 to n For j:=1 to n If dis[i,j]>dis[i,k]+dis[k,j] Then Dis[I,j]:=dis[I,k]+dis[k,j] c)算法結(jié)束:dis即為所有點(diǎn)對(duì)的最短路徑矩陣 3)算法小結(jié):此算法簡(jiǎn)單有效,由于三重循環(huán)結(jié)構(gòu)緊湊,對(duì)于稠密圖,效率要高于執(zhí)行|V|次Dijkstra算法。時(shí)間復(fù)雜度O(n^3)。 考慮下列變形:如(I,j)∈E則dis[I,j]初始為1,else初始為0,這樣的Floyd算法最后的最短路徑矩陣即成為一個(gè)判斷I,j是否有通路的矩陣。更簡(jiǎn)單的,我們可以把dis設(shè)成boolean類(lèi)型,則每次可以用“dis[I,j]:=dis[I,j]or(dis[I,k]and dis[k,j])”來(lái)代替算法描述中的藍(lán)色部分,可以更直觀地得到I,j的連通情況。

    標(biāo)簽: Floyd-Warshall Shortest Pairs Paths

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

    上傳用戶:dyctj

  • 本設(shè)計(jì)是一個(gè)簡(jiǎn)單的行編輯器。它主要能實(shí)現(xiàn)五個(gè)主要內(nèi)容: 1、字符的按行錄入及儲(chǔ)存;2、文件內(nèi)容的顯示;3、文件內(nèi)容的查找;4、文件內(nèi)容的替換5、文件的修改。 設(shè)計(jì)按數(shù)標(biāo)準(zhǔn)I/O下文件系統(tǒng)軟件工程

    本設(shè)計(jì)是一個(gè)簡(jiǎn)單的行編輯器。它主要能實(shí)現(xiàn)五個(gè)主要內(nèi)容: 1、字符的按行錄入及儲(chǔ)存;2、文件內(nèi)容的顯示;3、文件內(nèi)容的查找;4、文件內(nèi)容的替換5、文件的修改。 設(shè)計(jì)按數(shù)標(biāo)準(zhǔn)I/O下文件系統(tǒng)軟件工程的方法進(jìn)行,系統(tǒng)應(yīng)具有良好的界面、必要的交互信息和較好的健壯性;醒目美觀的軟件封面。操作人員能快捷簡(jiǎn)單地進(jìn)行操作。

    標(biāo)簽: 編輯器 字符 儲(chǔ)存 修改

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

    上傳用戶:朗朗乾坤

  • The PCI Local bus concept was developed to break the PC data I/O bottleneck and clearly opens the d

    The PCI Local bus concept was developed to break the PC data I/O bottleneck and clearly opens the door to increasing system speed and expansion capabilities. The PCI Local bus moves high speed peripherals from the I/O bus and places them closer to the system’s processor bus, providing faster data transfers between the processor and peripherals. The PCI Local bus also addresses the industry’s need for a bus standard which is not directly dependent on the speed, size and type of system processor. It represents the first microprocessor independent bus offering performance more than adequate for the most demanding applications such as full-motion video.

    標(biāo)簽: bottleneck developed the concept

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

    上傳用戶:ikemada

  • The PCI Local bus concept was developed to break the PC data I/O bottleneck and clearly opens the d

    The PCI Local bus concept was developed to break the PC data I/O bottleneck and clearly opens the door to increasing system speed and expansion capabilities. The PCI Local bus moves high speed peripherals from the I/O bus and places them closer to the system’s processor bus, providing faster data transfers between the processor and peripherals. The PCI Local bus also addresses the industry’s need for a bus standard which is not directly dependent on the speed, size and type of system processor. It represents the first microprocessor independent bus offering performance more than adequate for the most demanding applications such as full-motion video. Hardware reference

    標(biāo)簽: bottleneck developed the concept

    上傳時(shí)間: 2016-03-18

    上傳用戶:極客

  • The PCI Local bus concept was developed to break the PC data I/O bottleneck and clearly opens the d

    The PCI Local bus concept was developed to break the PC data I/O bottleneck and clearly opens the door to increasing system speed and expansion capabilities. The PCI Local bus moves high speed peripherals from the I/O bus and places them closer to the system’s processor bus, providing faster data transfers between the processor and peripherals. The PCI Local bus also addresses the industry’s need for a bus standard which is not directly dependent on the speed, size and type of system processor. It represents the first microprocessor independent bus offering performance more than adequate for the most demanding applications such as full-motion video. User Manual

    標(biāo)簽: bottleneck developed the concept

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

    上傳用戶:努力努力再努力

  • 在學(xué)習(xí)VxWorks I/O 系統(tǒng)功能的基礎(chǔ)上

    在學(xué)習(xí)VxWorks I/O 系統(tǒng)功能的基礎(chǔ)上,了解的基本I/O、緩沖I/O 及格式化I/O、文件描述符、標(biāo)準(zhǔn)輸入/輸出/錯(cuò)誤設(shè)備的使用。對(duì)VxWorks I/O 系統(tǒng)中常用的API 有較為深入的理解。實(shí)踐者對(duì)I/O 系統(tǒng)的理解和使用的熟練程度將影響后續(xù)實(shí)踐環(huán)節(jié)進(jìn)行順利與否。通過(guò)I/O 系統(tǒng)API 與應(yīng)用程序交互,能方便地對(duì)所調(diào)試的系統(tǒng)進(jìn)行監(jiān)控,是實(shí)時(shí)嵌入環(huán)境軟硬件開(kāi)發(fā)的主要手段之一。實(shí)現(xiàn)終端顯示的秒表。精確到1/10 秒。可鍵盤(pán)控制暫停/繼續(xù)計(jì)時(shí)/復(fù)位功能。

    標(biāo)簽: VxWorks

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

    上傳用戶:haohaoxuexi

  • 實(shí)現(xiàn)最優(yōu)二叉樹(shù)的構(gòu)造;在此基礎(chǔ)上完成哈夫曼編碼器與譯碼器。 假設(shè)報(bào)文中只會(huì)出現(xiàn)如下表所示的字符: 字符 A B C D E F G H I J K L M N 頻度 186 64 13 22

    實(shí)現(xiàn)最優(yōu)二叉樹(shù)的構(gòu)造;在此基礎(chǔ)上完成哈夫曼編碼器與譯碼器。 假設(shè)報(bào)文中只會(huì)出現(xiàn)如下表所示的字符: 字符 A B C D E F G H I J K L M N 頻度 186 64 13 22 32 103 21 15 47 57 1 5 32 20 57 字符 O P Q R S T U V W X Y Z , . 頻度 63 15 1 48 51 80 23 8 18 1 16 1 6 2 要求完成的系統(tǒng)應(yīng)具備如下的功能: 1.初始化。從終端(文件)讀入字符集的數(shù)據(jù)信息,。建立哈夫曼樹(shù)。 2.編碼:利用已建好的哈夫曼樹(shù)對(duì)明文文件進(jìn)行編碼,并存入目標(biāo)文件(哈夫曼碼文件)。 3.譯碼:利用已建好的哈夫曼樹(shù)對(duì)目標(biāo)文件(哈夫曼碼文件)進(jìn)行編碼,并存入指定的明文文件。 4.輸出哈夫曼編碼文件:輸出每一個(gè)字符的哈夫曼編碼。

    標(biāo)簽: 186 字符 13 64

    上傳時(shí)間: 2014-11-23

    上傳用戶:shanml

  • 基于LPC2210 的ZLG/CF 驅(qū)動(dòng)使用. CF 卡有PC 卡I/O、MEMORY 及True IDE 等3 種模式

    基于LPC2210 的ZLG/CF 驅(qū)動(dòng)使用. CF 卡有PC 卡I/O、MEMORY 及True IDE 等3 種模式,而True IDE 模式兼容IDE 硬 盤(pán),該模式比其它的兩種模式更實(shí)用,是3 種模式中使用較多的一種。本節(jié)中描述CF 卡在 True IDE 模式下的應(yīng)用。 使用LPC2210 的通用可編程I/O 口,模擬產(chǎn)生ATA 設(shè)備的讀寫(xiě)時(shí)序,實(shí)現(xiàn)對(duì)CF 卡及 IDE 硬盤(pán)等ATA 設(shè)備讀寫(xiě)操作。使用LPC2210 的GPIO 功能,可以非常靈活而簡(jiǎn)單地實(shí)現(xiàn) ATA 讀寫(xiě)時(shí)序。

    標(biāo)簽: MEMORY 2210 CF True

    上傳時(shí)間: 2016-05-18

    上傳用戶:海陸空653

  • C51實(shí)用程序(45個(gè)) I/O、定時(shí)器、中斷、看門(mén)狗、計(jì)數(shù)器、軟件AD、VB串口、93c06驅(qū)動(dòng)、24c02系列驅(qū)動(dòng)、7219、20045、軟件陷阱、串口中斷、碼值轉(zhuǎn)換、AVR通訊、IIC、D

    C51實(shí)用程序(45個(gè)) I/O、定時(shí)器、中斷、看門(mén)狗、計(jì)數(shù)器、軟件AD、VB串口、93c06驅(qū)動(dòng)、24c02系列驅(qū)動(dòng)、7219、20045、軟件陷阱、串口中斷、碼值轉(zhuǎn)換、AVR通訊、IIC、DS1302、DS1820、SPI、1602、12232、12864、T6963、1330、PC鍵、鍵盤(pán)輸入法、智能化、飛機(jī)游戲、貪吃蛇、多級(jí)菜單實(shí)例等

    標(biāo)簽: 93c06 24c02 20045 7219

    上傳時(shí)間: 2016-06-17

    上傳用戶:hasan2015

主站蜘蛛池模板: 茶陵县| 绥德县| 尼玛县| 宣威市| 湖北省| 崇义县| 麻阳| 新乡县| 屏山县| 孟村| 东丽区| 北安市| 汝阳县| 道孚县| 黄梅县| 柳江县| 吉林省| 黄大仙区| 屯昌县| 潮安县| 桃园县| 贡山| 德州市| 仪陇县| 化隆| 得荣县| 吴川市| 阜平县| 莱西市| 青阳县| 邻水| 邹城市| 朝阳县| 常山县| 承德市| 简阳市| 凉城县| 棋牌| 龙州县| 永新县| 武穴市|