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

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

Breadth-first

  • 學(xué)編譯原理時(shí)寫的一個(gè)語法分析程序 分類:C/C++技術(shù)交流 一.[目的要求] ① 對(duì)輸入文法

    學(xué)編譯原理時(shí)寫的一個(gè)語法分析程序 分類:C/C++技術(shù)交流 一.[目的要求] ① 對(duì)輸入文法,由程序自動(dòng)構(gòu)造FIRST FOLLOW集 ② 對(duì)輸入文法,由程序自動(dòng)生成它的LL(1)分析表; ③ 對(duì)于給定的輸入串,應(yīng)能判斷識(shí)別該串是否為給定文法的句型。 二.[題目分析] 該程序可分為如下幾步: (1)讀入文法 (2)判斷正誤 (3)若無誤,判斷是否為L(zhǎng)L(1)文法 (4)若是,構(gòu)造分析表; (5)由總控算法判斷輸入符號(hào)串是否為該文法的句型。

    標(biāo)簽: 編譯原理 交流 程序

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

    上傳用戶:1101055045

  • Good morning, dear teachers. I am very glad to be here for your interview. my name is xx.I am 21 yea

    Good morning, dear teachers. I am very glad to be here for your interview. my name is xx.I am 21 years old. I come from Dafang, a small town of Guizhou province. My undergraduate period will be accomplished in East China Jiaotong University. I major in electrical engineering and automation. I am interesting in computer, especially in program design. I am a hard study student, especially in the things which I interesting in. I am a person with great perseverance. During the days I preparing for the postgraduate examination, I insist on study for more than 10 hours every day. Just owing to this, I could pass the first examination finally. I am also a person with great ambition.

    標(biāo)簽: interview teachers morning Good

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

    上傳用戶:釣鰲牧馬

  • The literature of cryptography has a curious history. Secrecy, of course, has always played a centra

    The literature of cryptography has a curious history. Secrecy, of course, has always played a central role, but until the First World War, important developments appeared in print in a more or less timely fashion and the field moved forward in much the same way as other specialized disciplines. As late as 1918, one of the most influential cryptanalytic papers of the twentieth century, William F. Friedman’s monograph The Index of Coincidence and Its Applications in Cryptography, appeared as a research report of the private Riverbank Laboratories [577]. And this, despite the fact that the work had been done as part of the war effort. In the same year Edward H. Hebern of Oakland, California filed the first patent for a rotor machine [710], the device destined to be a mainstay of military cryptography for nearly 50 years.

    標(biāo)簽: cryptography literature has Secrecy

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

    上傳用戶:fxf126@126.com

  • 軟件簡(jiǎn)介:HI-TECH PICC 是一款高效的C編譯器

    軟件簡(jiǎn)介:HI-TECH PICC 是一款高效的C編譯器,支持Microchip PICmicro 10/12/14/16/17系列控制器。是一款強(qiáng)勁的標(biāo)準(zhǔn)C編譯器,完全遵守ISO/ANSI C,支持所有的數(shù)據(jù)類型包括24 and 32 bit IEEE 標(biāo)準(zhǔn)浮點(diǎn)類型。智能優(yōu)化產(chǎn)生高質(zhì)量的代碼。屬于第三方開發(fā)工具。能和MPLAB整合,內(nèi)嵌開發(fā)環(huán)境(HI-TIDE)。 Hi-tech PICC Compiler v8.注冊(cè)碼 Serial: HCPIC-88888 First Name: ONE Last Name: TWO Company Name:ONE TWO Registration: 任意填,但一定要填 Activation: NPCBACMJKLPCADKLOEDBFPIOCIBAEIDI

    標(biāo)簽: HI-TECH PICC 軟件 C編譯器

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

    上傳用戶:Andy123456

  • gcclib This gcc 1.40 suits for Linux kernel 0.11 - 0.95 Installtion hints -----------------

    gcclib This gcc 1.40 suits for Linux kernel 0.11 - 0.95 Installtion hints ----------------- This suit contains include.taz, local.taz and this README file. You must download the bootimage and rootimage and install them first. The include.taz contains all the include files for using with gcc 1.40. The local.taz contains all the gcc tools & libs stored in two sepearted directories: /usr/local/lib /usr/local/bin You should copy the linux/ asm/ sys/ subdirectories into the include directory from the corresponding kernel source. Installation ------------ Goto the /usr directory. Untar the include.taz to the directory /usr/include. Untar the local.taz to the directory /usr/local. That s it! Example: -------- cd /usr tar zxvf include.taz tar zxvf local.taz

    標(biāo)簽: Installtion gcclib kernel Linux

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

    上傳用戶:源碼3

  • Batch version of the back-propagation algorithm. % Given a set of corresponding input-output pairs

    Batch version of the back-propagation algorithm. % Given a set of corresponding input-output pairs and an initial network % [W1,W2,critvec,iter]=batbp(NetDef,W1,W2,PHI,Y,trparms) trains the % network with backpropagation. % % The activation functions must be either linear or tanh. The network % architecture is defined by the matrix NetDef consisting of two % rows. The first row specifies the hidden layer while the second % specifies the output layer. %

    標(biāo)簽: back-propagation corresponding input-output algorithm

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

    上傳用戶:exxxds

  • % Train a two layer neural network with the Levenberg-Marquardt % method. % % If desired, it is p

    % Train a two layer neural network with the Levenberg-Marquardt % method. % % If desired, it is possible to use regularization by % weight decay. Also pruned (ie. not fully connected) networks can % be trained. % % Given a set of corresponding input-output pairs and an initial % network, % [W1,W2,critvec,iteration,lambda]=marq(NetDef,W1,W2,PHI,Y,trparms) % trains the network with the Levenberg-Marquardt method. % % The activation functions can be either linear or tanh. The % network architecture is defined by the matrix NetDef which % has two rows. The first row specifies the hidden layer and the % second row specifies the output layer.

    標(biāo)簽: Levenberg-Marquardt desired network neural

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

    上傳用戶:jcljkh

  • Train a two layer neural network with a recursive prediction error % algorithm ("recursive Gauss-Ne

    Train a two layer neural network with a recursive prediction error % algorithm ("recursive Gauss-Newton"). Also pruned (i.e., not fully % connected) networks can be trained. % % The activation functions can either be linear or tanh. The network % architecture is defined by the matrix NetDef , which has of two % rows. The first row specifies the hidden layer while the second % specifies the output layer.

    標(biāo)簽: recursive prediction algorithm Gauss-Ne

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

    上傳用戶:ljt101007

  • SQL 合計(jì)函數(shù) 使用 SQL 合計(jì)函數(shù) 你可以確定數(shù)據(jù)組的各種統(tǒng)計(jì)。你可以把這些函數(shù)用于查詢和合計(jì)表達(dá)式

    SQL 合計(jì)函數(shù) 使用 SQL 合計(jì)函數(shù) 你可以確定數(shù)據(jù)組的各種統(tǒng)計(jì)。你可以把這些函數(shù)用于查詢和合計(jì)表達(dá)式,條件是在具備 SQL特性的 QueryDef對(duì)象中或在創(chuàng)建基于SQL查詢的 Recordset對(duì)象時(shí)。 Avg 函數(shù) Count 函數(shù) First, Last 函數(shù) Min, Max 函數(shù) StDev, StDevP 函數(shù) Sum 函數(shù) Var 和 VarP 函數(shù)

    標(biāo)簽: SQL 函數(shù) 數(shù)據(jù) 查詢

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

    上傳用戶:1583060504

  • [smith.rar] - smith原圖

    [smith.rar] - smith原圖,希望能給學(xué)射頻的一些幫助 [CommandPattern.rar] - ,Head First 設(shè)計(jì)模式原書用的是JAVA寫的代碼,網(wǎng)絡(luò)上也有C#的,但沒有見到用C++實(shí)現(xiàn)的。這是我用C++實(shí)現(xiàn)的命令模式的代碼 [網(wǎng)吧管理系統(tǒng)客戶端源程序.zip] - 這里是源碼。 宛楓書社圖書管理系統(tǒng) V1.0 Beta 測(cè)試版 面向中小型書店、個(gè)體書店進(jìn)行全面的人員、物流管理,旨在實(shí)現(xiàn)書店管理信息化。本系統(tǒng)采用會(huì)員制管理,將人員分為經(jīng)理、倉庫管理員、售書員、會(huì)員、游客等,分別擁有不同的權(quán)限,各司其職,以便提高工作效率。系統(tǒng)功能包括:供應(yīng)商管理、進(jìn)書管理、圖書資

    標(biāo)簽: smith

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

    上傳用戶:lo25643

主站蜘蛛池模板: 沙坪坝区| 平潭县| 沙坪坝区| 华蓥市| 葵青区| 庐江县| 深州市| 枣强县| 隆尧县| 宁化县| 澎湖县| 双柏县| 南平市| 金坛市| 思南县| 台湾省| 阳城县| 通江县| 甘谷县| 通海县| 云龙县| 太白县| 河东区| 陇西县| 五峰| 雷山县| 潮安县| 滨海县| 临城县| 商洛市| 临澧县| 滁州市| 塔城市| 旺苍县| 方山县| 昭觉县| 莫力| 新和县| 朝阳区| 铅山县| 布尔津县|