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

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

LINE-oriented

  • 學(xué)會一個(gè)程式語言

    學(xué)會一個(gè)程式語言,是一回事兒;學(xué)會如何以此語言設(shè)計(jì)並實(shí)作出有效的程式,又是一回事兒。C++ 尤其如此,因?yàn)樗懿粚こ5睾w了罕見的威力和豐富的表現(xiàn)力,不但建立在一個(gè)全功能的傳統(tǒng)語言(C)之上,更提供極為廣泛的物件導(dǎo)向(object-oriented)性質(zhì),以及對templates 和exceptions(異常狀態(tài))的支援。

    標(biāo)簽: 程式

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

    上傳用戶:ANRAN

  • A very simple ftp server s source code for demonstration. * It supports PASV/PORT modes and followi

    A very simple ftp server s source code for demonstration. * It supports PASV/PORT modes and following operations: * ls,pwd,cwd,get,put,dele. * I have tested it using following ftp clients: * 1. Windows XP s command line ftp client, * 2. IE 6.0, * 3. Redhat 9.0 s ftp client, * 4. CuteFTP 8, * I ll introduce more functions and improve its performance

    標(biāo)簽: demonstration supports followi simple

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

    上傳用戶:wl9454

  • a new method for identification of fast fading mobile channels. Estimates both the channel statistic

    a new method for identification of fast fading mobile channels. Estimates both the channel statistics and the time varying channel impulse respone on -line.

    標(biāo)簽: identification Estimates statistic channels

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

    上傳用戶:lz4v4

  • In this paper, it is designed a platform for least deviation linear interpolation with two axis line

    In this paper, it is designed a platform for least deviation linear interpolation with two axis linear guides, and it realizes the linear interpolator by PIC microprocessor with MPLAB C language in PIC microprocessor.

    標(biāo)簽: interpolation deviation designed platform

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

    上傳用戶:維子哥哥

  • 本文的主旨以討論 EMACS 的入門為主

    本文的主旨以討論 EMACS 的入門為主,其內(nèi)容包括 EMACS 發(fā)展的概述, EMACS 整合 環(huán)境的簡介以及 EMACS 的基石 - editor 的詳談。本文在結(jié)構(gòu)上分成八章,第一章討論有 關(guān) EMACS 的源起、發(fā)展歷史以及 EMACS 的特性簡介。 第二章討論 EMACS 的 on-line help。第三章則簡單介紹 EMACS 的整合環(huán)境。接下來就是本文的重點(diǎn),探討 EMACS 的 本質(zhì)。

    標(biāo)簽: EMACS

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

    上傳用戶:wff

  • Learn how to leverage a key Java technology used to access relational data from Java programs, in

    Learn how to leverage a key Java technology used to access relational data from Java programs, in an Oracle environment. Author Donald Bales begins by teaching you the mysteries of establishing database connections, and how to issue SQL queries and get results back. You ll move on to advanced topics such as streaming large objects, calling PL/procedures, and working with Oracle9i s object-oriented features, then finish with a look at transactions, concurrency management, and performance

    標(biāo)簽: Java technology relational leverage

    上傳時(shí)間: 2017-08-02

    上傳用戶:xz85592677

  • Abstract—The contourlet transform is a new two-dimensional extension of the wavelet transform using

    Abstract—The contourlet transform is a new two-dimensional extension of the wavelet transform using multiscale and direc- tional fi lter banks. The contourlet expansion is composed of basis images oriented at various directions in multiple scales, with fl exible aspect ratios. Given this rich set of basis images, the contourlet transform effectively captures smooth contours that are the dominant feature in natural images.

    標(biāo)簽: transform two-dimensional contourlet extension

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

    上傳用戶:水中浮云

  • Solve the 8-puzzle problem using A * algorithme. Input: Program reads start state and goal state

    Solve the 8-puzzle problem using A * algorithme. Input: Program reads start state and goal state and heuristic (N or S) from EightPuzzle.INP file.0 representing blank. There are 2 Heuristic: 1. N: Number of misplaced tiles 2. S: Sum of Manhattan distance of current location and target location. Format: The first line write type of heuristic (N or S). Next is the status of departing and landing status. Between 2 states of 1 line blank. See examples EightPuzzle.INP

    標(biāo)簽: state algorithme Program problem

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

    上傳用戶:jjj0202

  • The Definitive Guide to SOA: Oracle® Service Bus, Second Edition targets professional software

    The Definitive Guide to SOA: Oracle® Service Bus, Second Edition targets professional software developers and architects who know enterprise development but are new to enterprise service buses (ESBs) and service–oriented architecture (SOA) development. This is the first book to cover a practical approach to SOA using the BEA AquaLogic Service Bus tool. And it’s written from the “source”—BEA Systems AquaLogic product lead Jeff Davies.

    標(biāo)簽: professional Definitive software Edition

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

    上傳用戶:wpwpwlxwlx

  • Implementation of Edmonds Karp algorithm that calculates maxFlow of graph. Input: For each test c

    Implementation of Edmonds Karp algorithm that calculates maxFlow of graph. Input: For each test case, the first line contains the number of vertices (n) and the number of arcs (m). Then, there exist m lines, one for each arc (source vertex, ending vertex and arc weight, separated by a space). The nodes are numbered from 1 to n. The node 1 and node n should be in different sets. There are no more than 30 arcs and 15 nodes. The arc weights vary between 1 and 1 000 000. Output: The output is a single line for each case, with the corresponding minimum size cut. Example: Input: 7 11 1 2 3 1 4 3 2 3 4 3 1 3 3 4 1 3 5 2 4 6 6 4 5 2 5 2 1 5 7 1 6 7 9 Output: 5

    標(biāo)簽: Implementation calculates algorithm Edmonds

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

    上傳用戶:kiklkook

主站蜘蛛池模板: 栾川县| 福建省| 邯郸县| 桂阳县| 繁峙县| 海兴县| 治多县| 大埔县| 璧山县| 河南省| 绩溪县| 宜黄县| 龙岩市| 泰州市| 佛坪县| 英德市| 闵行区| 栾城县| 攀枝花市| 新闻| 开江县| 枣庄市| 米脂县| 普宁市| 闸北区| 盐亭县| 罗平县| 南平市| 仁布县| 福州市| 南丰县| 绥德县| 廊坊市| 黑水县| 惠水县| 新密市| 台南市| 乡城县| 长武县| 海门市| 墨脱县|