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

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

a-<b>top-down</b>

  • 光寶光耦替代同類(lèi)產(chǎn)品

    臺(tái)灣光寶光耦全系列產(chǎn)品 LTV-817S-TA1-C LTV-817X-B LTV-817X-C LTV-817X-C-SC LTV-817-D MOC3021 MOC3021S-TA1 MOC-3052 4N28 4N35 4N35S 4N35S-TA1 6N136 6N137 6N138 6N139 LTV-217-A-G LTV-217-B LTV-352T LTV-354T LTV-356T-B LTV-356T-C LTV-814 LTV-816X-B LTV-816X-C LTV-816X-D

    標(biāo)簽: 光耦

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

    上傳用戶(hù):199311

  • Demo程序經(jīng)Keil701編譯后

    Demo程序經(jīng)Keil701編譯后,代碼量為7-8K,可直接在KeilC51上仿真運(yùn)行。 使用方法:解壓后雙擊yy項(xiàng)目,點(diǎn)調(diào)試即可在串口仿真看到結(jié)果。 Demo程序創(chuàng)建了3個(gè)任務(wù)A、B、C優(yōu)先級(jí)分別為2、3、4,A每秒顯示一次,B每3秒顯示一次,C每6秒顯示一次。從顯示結(jié)果看,顯示3個(gè)A后顯示1個(gè)B,顯示6個(gè)A和2個(gè)B后顯示1個(gè)C,結(jié)果顯然正確。用戶(hù)可以仿照范例運(yùn)用更多系統(tǒng)API函數(shù)寫(xiě)出自己的程序。只要程序中有顯示語(yǔ)句就可以用軟件仿真器看結(jié)果。注意:系統(tǒng)提供的顯示函數(shù)是并發(fā)的,他不是直接顯示到串口,而是先輸出到顯存,用戶(hù)不必?fù)?dān)心IO慢速操作影響程序運(yùn)行。串口輸入也采用了同樣的技術(shù),他使得用戶(hù)在CPU忙于處理其他任務(wù)時(shí)照樣可以盲打輸入命令。 將EXL2-shell目錄下的文件覆蓋yy目錄下的同名文件,將word.c、yyshell.c、yyshellsub.c、mystring.c加入項(xiàng)目,刪除yy1.c,編譯后調(diào)試即可。輸入help可得到在線幫助,具體命令用法見(jiàn)文章說(shuō)明。 yangye網(wǎng)友推薦http://www.sics.se/~adam/lwip/網(wǎng)站學(xué)習(xí)TCPIP,該網(wǎng)站開(kāi)放源代碼的lwip是專(zhuān)為8bit和16bitMCU設(shè)計(jì)的TCPIP協(xié)議棧,已在多種CPU上移植成功,推薦大家下載。

    標(biāo)簽: Demo Keil 701 程序

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

    上傳用戶(hù):hopy

  • C++完美演繹 經(jīng)典算法 如 /* 頭文件:my_Include.h */ #include <stdio.h> /* 展開(kāi)C語(yǔ)言的內(nèi)建函數(shù)指令 */ #define PI 3.141

    C++完美演繹 經(jīng)典算法 如 /* 頭文件:my_Include.h */ #include <stdio.h> /* 展開(kāi)C語(yǔ)言的內(nèi)建函數(shù)指令 */ #define PI 3.1415926 /* 宏常量,在稍后章節(jié)再詳解 */ #define circle(radius) (PI*radius*radius) /* 宏函數(shù),圓的面積 */ /* 將比較數(shù)值大小的函數(shù)寫(xiě)在自編include文件內(nèi) */ int show_big_or_small (int a,int b,int c) { int tmp if (a>b) { tmp = a a = b b = tmp } if (b>c) { tmp = b b = c c = tmp } if (a>b) { tmp = a a = b b = tmp } printf("由小至大排序之后的結(jié)果:%d %d %d\n", a, b, c) } 程序執(zhí)行結(jié)果: 由小至大排序之后的結(jié)果:1 2 3 可將內(nèi)建函數(shù)的include文件展開(kāi)在自編的include文件中 圓圈的面積是=201.0619264

    標(biāo)簽: my_Include include define 3.141

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

    上傳用戶(hù):epson850

  • 大整數(shù)乘法例子代碼 /* 遞歸邊界

    大整數(shù)乘法例子代碼 /* 遞歸邊界,如果是1位二進(jìn)制數(shù)與1位二進(jìn)制數(shù)相乘,則可以直接計(jì)算 */ /*累計(jì)做1位二進(jìn)制乘法運(yùn)算的次數(shù)*/ /* return (X*Y) */ /* 計(jì)算n的值 */ /* 把X和Y拆分開(kāi)來(lái),令X=A*2^(n/2)+B, 左移位運(yùn)算,mod = 1<<(n/2) */ /* 計(jì)算XY=AC*2^n+(AD+CB)*2^(n/2)+BD */ /* 計(jì)算A*C,再向左移n位 */ /* 遞歸計(jì)算A*D */ /* 遞歸計(jì)算C*B */ /* 計(jì)算a21+a22,再向左移n/2位 */ /* 遞歸計(jì)算B*D */ /* XY=a1+a2+a3 */

    標(biāo)簽: 整數(shù) 乘法 代碼 遞歸

    上傳時(shí)間: 2015-05-19

    上傳用戶(hù):gyq

  • 數(shù)字運(yùn)算

    數(shù)字運(yùn)算,判斷一個(gè)數(shù)是否接近素?cái)?shù) 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

    標(biāo)簽: 數(shù)字 運(yùn)算

    上傳時(shí)間: 2015-05-21

    上傳用戶(hù):daguda

  • LCS(最長(zhǎng)公共子序列)問(wèn)題可以簡(jiǎn)單地描述如下: 一個(gè)給定序列的子序列是在該序列中刪去若干元素后得到的序列。給定兩個(gè)序列X和Y

    LCS(最長(zhǎng)公共子序列)問(wèn)題可以簡(jiǎn)單地描述如下: 一個(gè)給定序列的子序列是在該序列中刪去若干元素后得到的序列。給定兩個(gè)序列X和Y,當(dāng)另一序列Z既是X的子序列又是Y的子序列時(shí),稱(chēng)Z是序列X和Y的公共子序列。例如,若X={A,B,C,B,D,B,A},Y={B,D,C,A,B,A},則序列{B,C,A}是X和Y的一個(gè)公共子序列,但它不是X和Y的一個(gè)最長(zhǎng)公共子序列。序列{B,C,B,A}也是X和Y的一個(gè)公共子序列,它的長(zhǎng)度為4,而且它是X和Y的一個(gè)最長(zhǎng)公共子序列,因?yàn)閄和Y沒(méi)有長(zhǎng)度大于4的公共子序列。 最長(zhǎng)公共子序列問(wèn)題就是給定兩個(gè)序列X={x1,x2,...xm}和Y={y1,y2,...yn},找出X和Y的一個(gè)最長(zhǎng)公共子序列。對(duì)于這個(gè)問(wèn)題比較容易想到的算法是窮舉,對(duì)X的所有子序列,檢查它是否也是Y的子序列,從而確定它是否為X和Y的公共子序列,并且在檢查過(guò)程中記錄最長(zhǎng)的公共子序列。X的所有子序列都檢查過(guò)后即可求出X和Y的最長(zhǎng)公共子序列。X的每個(gè)子序列相應(yīng)于下標(biāo)集{1,2,...,m}的一個(gè)子集。因此,共有2^m個(gè)不同子序列,從而窮舉搜索法需要指數(shù)時(shí)間。

    標(biāo)簽: 序列 LCS 元素

    上傳時(shí)間: 2015-06-09

    上傳用戶(hù):氣溫達(dá)上千萬(wàn)的

  • 光學(xué)設(shè)計(jì)軟件zemax源碼: This DLL models an nular aspheric surface as described in: "Annular surfaces in

    光學(xué)設(shè)計(jì)軟件zemax源碼: This DLL models an nular aspheric surface as described in: "Annular surfaces in annular field systems" By Jose M. Sasian Opt. eng. 36 (12) P 3401-3401 December 1997 This surface is essentially an odd aspheric surface with an offset in the aspheric terms. The sag is given by: Z = (c*r*r) / (1+(1-((1+k)*c*c*r*r))^ 1/2 ) + a*(r-q)^2 + b*(r-q)^3 + c*(r-q)^4 + ... Note the terms a, b, c, ... have units of length to the -1, -2, -3, ... power.

    標(biāo)簽: described aspheric surfaces Annular

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

    上傳用戶(hù):yyyyyyyyyy

  • 1 概述 1.1 編寫(xiě)目的 本文檔的編寫(xiě)目的是:詳細(xì)定義×××××軟件的總體功能;給出系統(tǒng)的結(jié)構(gòu)設(shè)計(jì)

    1 概述 1.1 編寫(xiě)目的 本文檔的編寫(xiě)目的是:詳細(xì)定義×××××軟件的總體功能;給出系統(tǒng)的結(jié)構(gòu)設(shè)計(jì),作為過(guò)程設(shè)計(jì)和程序編寫(xiě)的依據(jù)。 1.2 參考資料 包括: a. 項(xiàng)目來(lái)源; b. 本文檔中引用到的規(guī)范和資料等; c. 列出這些規(guī)范和資料的作者、編號(hào)、標(biāo)題、發(fā)表日期、出版單位或資料來(lái)源。 1.3 術(shù)語(yǔ)和縮寫(xiě)詞* 列出本文檔中用到的專(zhuān)門(mén)術(shù)語(yǔ)的定義和縮寫(xiě)詞,縮寫(xiě)詞要給出中文譯名和英文全稱(chēng),常用的不需要定義。 2 需求概述 2.1 目標(biāo)與需求 概述系統(tǒng)的特性和需求,擴(kuò)充軟件需求說(shuō)明中的信息,給出增加的細(xì)節(jié),詳盡地指出對(duì)軟件需求說(shuō)明中有關(guān)特性和需求做出的變更。 2.2 環(huán)境描述 描述運(yùn)行軟件系統(tǒng)所需的軟、硬件環(huán)境;描述開(kāi)發(fā)軟件系統(tǒng)所需的軟、硬件環(huán)境。 2.3 條件和限制 描述可能影響設(shè)計(jì)方案形成及實(shí)施的條件和限制。

    標(biāo)簽: 1.1 編寫(xiě) 文檔 定義

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

    上傳用戶(hù):stvnash

  • by Randal L. Schwartz and Tom Phoenix ISBN 0-596-00132-0 Third Edition, published July 2001. (See

    by Randal L. Schwartz and Tom Phoenix ISBN 0-596-00132-0 Third Edition, published July 2001. (See the catalog page for this book.) the text of Learning Perl, 3rd Edition. Table of Contents Copyright Page Preface Chapter 1: Introduction Chapter 2: Scalar Data Chapter 3: Lists and Arrays Chapter 4: Subroutines Chapter 5: Hashes Chapter 6: I/O Basics Chapter 7: Concepts of Regular Expressions Chapter 8: More About Regular Expressions Chapter 9: Using Regular Expressions Chapter 10: More Control Structures Chapter 11: Filehandles and File Tests Chapter 12: Directory Operations Chapter 13: Manipulating Files and Directories Chapter 14: Process Management Chapter 15: Strings and Sorting Chapter 16: Simple Databases Chapter 17: Some Advanced Perl Techniques Appendix A: Exercise Answers Appendix B: Beyond the Llama Index Colophon

    標(biāo)簽: L. published Schwartz Edition

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

    上傳用戶(hù):kr770906

  • by Randal L. Schwartz and Tom Phoenix ISBN 0-596-00132-0 Third Edition, published July 2001. (See

    by Randal L. Schwartz and Tom Phoenix ISBN 0-596-00132-0 Third Edition, published July 2001. (See the catalog page for this book.) Learning Perl, 3rd Edition. Table of Contents Copyright Page Preface Chapter 1: Introduction Chapter 2: Scalar Data Chapter 3: Lists and Arrays Chapter 4: Subroutines Chapter 5: Hashes Chapter 6: I/O Basics Chapter 7: Concepts of Regular Expressions Chapter 8: More About Regular Expressions Chapter 9: Using Regular Expressions Chapter 10: More Control Structures Chapter 11: Filehandles and File Tests Chapter 12: Directory Operations Chapter 13: Manipulating Files and Directories Chapter 14: Process Management Chapter 15: Strings and Sorting Chapter 16: Simple Databases Chapter 17: Some Advanced Perl Techniques Appendix A: Exercise Answers Appendix B: Beyond the Llama Index Colophon

    標(biāo)簽: L. published Schwartz Edition

    上傳時(shí)間: 2015-09-03

    上傳用戶(hù):lifangyuan12

主站蜘蛛池模板: 安康市| 吉林市| 土默特左旗| 平舆县| 都匀市| 阿克苏市| 阳西县| 贡嘎县| 江安县| 抚州市| 长治县| 嘉善县| 乌拉特后旗| 广宁县| 将乐县| 轮台县| 揭西县| 乌苏市| 万全县| 离岛区| 嘉黎县| 汝州市| 美姑县| 巴彦淖尔市| 枝江市| 松溪县| 醴陵市| 南靖县| 九寨沟县| 延庆县| 重庆市| 高要市| 台东市| 太原市| 广安市| 张家界市| 乌拉特前旗| 南靖县| 华安县| 灵宝市| 岐山县|