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

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

cODE<b>c</b>

  • Easy_Buy是一個(gè)在線銷售系統(tǒng)

    Easy_Buy是一個(gè)在線銷售系統(tǒng),是一個(gè)B-C模式的電子商務(wù)系統(tǒng),由前臺(tái)的B/S模式購(gòu)物系統(tǒng)和后臺(tái)的C/S模式的管理系統(tǒng)兩部分組成。該電子商務(wù)系統(tǒng)可以實(shí)現(xiàn)會(huì)員注冊(cè)、瀏覽商品、查看商品詳細(xì)信息、選購(gòu)商品、取消訂單和查看訂單等功能。

    標(biāo)簽: Easy_Buy 銷售

    上傳時(shí)間: 2015-04-28

    上傳用戶:luke5347

  • The program SPLAY is a pascal to C translation of a program that Kim Kokkonen wrote in Turbo Pasca

    The program SPLAY is a pascal to C translation of a program that Kim Kokkonen wrote in Turbo Pascal to implement Splay Trees. This program compresses and decompresses files, and does a pretty good job of it. Contents: SPLAY.PAS Original TP source code SPLAY.C Translation of code to C SPLAY.EXE Compiled version of SPLAY.C (small model) README.DOC You are looking at it Read the comments at the beginning of SPLAY.C for more info.

    標(biāo)簽: program translation Kokkonen pascal

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

    上傳用戶:rocwangdp

  • 多對(duì)象的旋轉(zhuǎn)

    多對(duì)象的旋轉(zhuǎn),實(shí)現(xiàn)用戶自定義輸入各個(gè)點(diǎn)的位置,并可以自己修改運(yùn)動(dòng)速度,軌跡A,B,C的徑長(zhǎng)。

    標(biāo)簽: 對(duì)象 旋轉(zhuǎn)

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

    上傳用戶:Pzj

  • 大整數(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拆分開來(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

    上傳用戶:gyq

  • 程序用JAVA語(yǔ)言編寫, 綜合利用圖結(jié)構(gòu)和堆棧結(jié)構(gòu)進(jìn)行數(shù)據(jù)組織和處理. 可以進(jìn)行正則表達(dá)式到NFA的轉(zhuǎn)化, 并能用圖形直觀的表示. 對(duì)正則表達(dá)式有一些約定, 就是可以用單個(gè)字符表示輸入, 也可以

    程序用JAVA語(yǔ)言編寫, 綜合利用圖結(jié)構(gòu)和堆棧結(jié)構(gòu)進(jìn)行數(shù)據(jù)組織和處理. 可以進(jìn)行正則表達(dá)式到NFA的轉(zhuǎn)化, 并能用圖形直觀的表示. 對(duì)正則表達(dá)式有一些約定, 就是可以用單個(gè)字符表示輸入, 也可以用 ‘ ‘ 連接起來(lái)的一串字符進(jìn)行輸入. 有基本的表達(dá)式以及由基本表達(dá)式構(gòu)成的并置, 選擇和重復(fù)的操作. 例: A|b*c ‘letter’*’digit’ 等都是合法輸入. 還帶有括號(hào)功能, 優(yōu)先級(jí)

    標(biāo)簽: JAVA NFA 表達(dá)式

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

    上傳用戶:金宜

  • 源代碼用動(dòng)態(tài)規(guī)劃算法計(jì)算序列關(guān)系個(gè)數(shù) 用關(guān)系"<"和"="將3個(gè)數(shù)a

    源代碼\用動(dòng)態(tài)規(guī)劃算法計(jì)算序列關(guān)系個(gè)數(shù) 用關(guān)系"<"和"="將3個(gè)數(shù)a,b,c依次序排列時(shí),有13種不同的序列關(guān)系: a=b=c,a=b<c,a<b=v,a<b<c,a<c<b a=c<b,b<a=c,b<a<c,b<c<a,b=c<a c<a=b,c<a<b,c<b<a 若要將n個(gè)數(shù)依序列,設(shè)計(jì)一個(gè)動(dòng)態(tài)規(guī)劃算法,計(jì)算出有多少種不同的序列關(guān)系, 要求算法只占用O(n),只耗時(shí)O(n*n).

    標(biāo)簽: lt 源代碼 動(dòng)態(tài)規(guī)劃 序列

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

    上傳用戶:siguazgb

  • The government of a small but important country has decided that the alphabet needs to be streamline

    The government of a small but important country has decided that the alphabet needs to be streamlined and reordered. Uppercase letters will be eliminated. They will issue a royal decree in the form of a String of B and A characters. The first character in the decree specifies whether a must come ( B )Before b in the new alphabet or ( A )After b . The second character determines the relative placement of b and c , etc. So, for example, "BAA" means that a must come Before b , b must come After c , and c must come After d . Any letters beyond these requirements are to be excluded, so if the decree specifies k comparisons then the new alphabet will contain the first k+1 lowercase letters of the current alphabet. Create a class Alphabet that contains the method choices that takes the decree as input and returns the number of possible new alphabets that conform to the decree. If more than 1,000,000,000 are possible, return -1. Definition

    標(biāo)簽: government streamline important alphabet

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

    上傳用戶:weixiao99

  • 光學(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

    上傳用戶:yyyyyyyyyy

  • 該源碼是一個(gè)問(wèn)題的解決方法。問(wèn)題是給你個(gè)長(zhǎng)為L(zhǎng)的串

    該源碼是一個(gè)問(wèn)題的解決方法。問(wèn)題是給你個(gè)長(zhǎng)為L(zhǎng)的串,串中可以出現(xiàn)n種字符,還給出m個(gè)子串,求有多少個(gè)長(zhǎng)為n的只由這些字串組成的串。輸入例子:4 5 6 ABB BCA BCD CAB CDD DDA 結(jié)果為2.而5 4 5 E D C B A的結(jié)果為625

    標(biāo)簽: 源碼

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

    上傳用戶:水中浮云

  • /*** *** *** *** *** *** *** *** *** *** *** *** **/ //**此映射表用來(lái)映射LED模塊不譯碼時(shí)

    /*** *** *** *** *** *** *** *** *** *** *** *** **/ //**此映射表用來(lái)映射LED模塊不譯碼時(shí),顯示的字符和必須輸入的數(shù)據(jù)的關(guān)系 //**每段和對(duì)應(yīng)比特位的關(guān)系見示意圖 // g // --- --- // b | a |f | | <---顯示0時(shí)點(diǎn)亮的段為gfedcb // --- // c | |e | | 那么寫入數(shù)據(jù)為0x7e // --- --- // d // bit: 7 6 5 4 3 2 1 0 // 段位: g f e d c b a

    標(biāo)簽: LED 映射 模塊 譯碼

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

    上傳用戶:

主站蜘蛛池模板: 潞西市| 龙门县| 灌云县| 那曲县| 凤阳县| 永仁县| 南安市| 石门县| 义乌市| 廊坊市| 竹北市| 类乌齐县| 东山县| 乐清市| 大田县| 罗平县| 桐庐县| 大丰市| 新野县| 左贡县| 乌鲁木齐市| 仙居县| 万荣县| 焦作市| 赣榆县| 顺义区| 神池县| 兴仁县| 华宁县| 且末县| 罗平县| 石棉县| 宜春市| 临潭县| 沁水县| 梁山县| 合作市| 黄浦区| 句容市| 秭归县| 安丘市|