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

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

Zero-tree

  • A Java virtual machine instruction consists of an opcode specifying the operation to be performed, f

    A Java virtual machine instruction consists of an opcode specifying the operation to be performed, followed by zero or more operands embodying values to be operated upon. This chapter gives details about the format of each Java virtual machine instruction and the operation it performs.

    標簽: instruction specifying operation performed

    上傳時間: 2013-12-12

    上傳用戶:朗朗乾坤

  • 學籍管理系統 系統是在VC++6.0和SQL Server 2000下開發的. 數據庫在Database目錄下,在SQLSERVER的查詢分析器中執行即可生成數據庫. 源程序在Src目錄中.

    學籍管理系統 系統是在VC++6.0和SQL Server 2000下開發的. 數據庫在Database目錄下,在SQLSERVER的查詢分析器中執行即可生成數據庫. 源程序在Src目錄中. 因為程序極為經典,所以本人在此轉載~ 一、編程環境: windows2000 +visual stdio c++ .net,Ado + SQL2000 二、SQL設置: 將在SQL2000下建立schooldata數據庫,導入數據文件 三、導入數據: data目錄下有school_back數據庫備分文件 操作:用SQL企業管理器還原數據庫來導入數據 訪問本地數據庫服務器,密碼是自己設置的那個,操作schooldata數據庫的用戶名和密碼相同。 主要用ADO訪問數據庫,和幾個顯示數據的控件Treectrl,listctrl,datagrid等程序中有幾個BUG還沒解決, 四、實現功能: 操作:在選擇查詢條件:選擇一個,tree控件里顯示相關信息 可以在tree控件里單擊來顯示每個ITEM,每個ITEM相關信息顯示在LIST控件內 雙擊LIST控件顯示具體信息 也可以在窗口里單擊右鍵或操作菜單具體操作 五、主要功能: 查詢,添加,刪除,顯示“學院,各系,班級,學生,教師,社團,課程”等信息

    標簽: SQLSERVER Database Server 2000

    上傳時間: 2015-05-11

    上傳用戶:wuyuying

  • The tar file contains the following files: ptfsf.c: heart of the perfect TFSF code ptfsf.h: he

    The tar file contains the following files: ptfsf.c: heart of the perfect TFSF code ptfsf.h: header file for same ptfsf-demo.c: FDTD code which demonstrates use of perfect TFSF code. Essentially this program used to generate results shown in the paper ptfsf-file-maker.c: code to generate an incident-field file using the "perfect" incident fields ptfsf-demo-file.c: FDTD code which uses the perfect incident fields stored in a file fdtdgen.h: defines macros used in much of my code Makefile: simple make-file to compile programs Also include are some simple script files to run the programs with reasonable values. The code assumes a two-dimensional computational domain with TMz polarization (i.e., non-zero field Ez, Hx, and Hy). The program is currently written so that the incident field always strikes the lower-left corner of the total-field region first. (If you want a different corner, that should be a fairly simple tweak to the code, but for now you ll have to make that tweak yourself.)

    標簽: ptfsf following the contains

    上傳時間: 2013-11-28

    上傳用戶:風之驕子

  • 物流分析工具包。Facility location: Continuous minisum facility location, alternate location-allocation (ALA)

    物流分析工具包。Facility location: Continuous minisum facility location, alternate location-allocation (ALA) procedure, discrete uncapacitated facility location Vehicle routing: VRP, VRP with time windows, traveling salesman problem (TSP) Networks: Shortest path, min cost network flow, minimum spanning tree problems Geocoding: U.S. city or ZIP code to longitude and latitude, longitude and latitude to nearest city, Mercator projection plotting Layout: Steepest descent pairwise interchange (SDPI) heuristic for QAP Material handling: Equipment selection General purpose: Linear programming using the revised simplex method, mixed-integer linear programming (MILP) branch and bound procedure Data: U.S. cities with populations of at least 10,000, U.S. highway network (Oak Ridge National Highway Network), U.S. 3- and 5-digit ZIP codes

    標簽: location location-allocation Continuous alternate

    上傳時間: 2015-05-17

    上傳用戶:kikye

  • 基于內容的多媒體數據庫檢索算法

    基于內容的多媒體數據庫檢索算法,VP-Tree算法。

    標簽: 多媒體 數據庫檢索 算法

    上傳時間: 2015-05-18

    上傳用戶:moerwang

  • ---- Huffman 算法的不同實現 本目錄下的程序用8種不同的方式實現了Huffman編碼算法

    ---- Huffman 算法的不同實現 本目錄下的程序用8種不同的方式實現了Huffman編碼算法,這8種方式分別是 * huffman_a 使用鏈表結構生成Huffman樹的算法,這是最基本的實現方法,效率最低。 * huffman_b 使用《數據結構》(嚴蔚敏,吳偉民,1997,C語言版)中給出的算法,將二叉樹存放在連續空間里(靜態鏈表),空間的每個結點內仍有左子樹、右子樹、雙親等指針。 * huffman_c 使用Canonical Huffman編碼,同時對huffman_b的存儲結構進行改造,將二叉樹存放在連續空間tree里,空間的每個結點類型都和結點權值的數據類型相同,空間大小為2*num,tree[0]未用,tree[1..num]是每個元素的權值,生成Huffman后,tree[1..2*num-1]中是雙親結點索引。 * huffman_d 在huffman_c的基礎上,增加預先排序的功能先用QuickSort算法對所有元素的權值從小到大排序,這樣,排序后最前面的兩個元素就是最小的一對元素了。我們可以直接將它們挑出來,組合成一個子樹。然后再子樹的權值用折半插入法插到已排序的元素表中, 保證所有結點有序。為了保證初始元素的順序不變,我們另外使用了一個索引數組,所有排序中的交換操作都是在索引數組中進行的

    標簽: Huffman 算法 目錄 方式

    上傳時間: 2015-06-12

    上傳用戶:xg262122

  • 分享好書(good):臺灣人的著作《Spring 技術手冊》等 在網上找到了臺灣java專家林信良的著作 《Spring 技術手冊》的電子書和大家分享下~~~只是缺了AOP的介紹

    分享好書(good):臺灣人的著作《Spring 技術手冊》等 在網上找到了臺灣java專家林信良的著作 《Spring 技術手冊》的電子書和大家分享下~~~只是缺了AOP的介紹,不過已經很全面了,臺灣技術書籍的特點:通俗易懂,深入淺出,結合實例~~~順便也帶上其它的幾本Struts,Hibernate~~ 不過,全是繁體字的哦。。。。 另外,《Spring 技術手冊》左邊的index tree 是亂碼!

    標簽: Spring good java AOP

    上傳時間: 2014-02-27

    上傳用戶:hasan2015

  • The Reed-Somolon code is specified by the finite field, the length (length <= 2^m-1), the numbe

    The Reed-Somolon code is specified by the finite field, the length (length <= 2^m-1), the number of redundant symbols (length-k), and the initial zero of the code, init_zero, such that the zeros are: init_zero, init_zero+1, ..., init_zero+length-k-1

    標簽: length the Reed-Somolon specified

    上傳時間: 2014-07-31

    上傳用戶:skfreeman

  • Wavelets have widely been used in many signal and image processing applications. In this paper, a ne

    Wavelets have widely been used in many signal and image processing applications. In this paper, a new serial-parallel architecture for wavelet-based image compression is introduced. It is based on a 4-tap wavelet transform, which is realised using some FIFO memory modules implementing a pixel-level pipeline architecture to compress and decompress images. The real filter calculation over 4 · 4 window blocks is done using a tree of carry save adders to ensure the high speed processing required for many applications. The details of implementing both compressor and decompressor sub-systems are given. The primarily analysis reveals that the proposed architecture, implemented using current VLSI technologies, can process a video stream in real time.

    標簽: applications processing Wavelets widely

    上傳時間: 2014-01-22

    上傳用戶:hongmo

  • algorithm

    algorithm , tree hash table, b tree, Tas de Fibonnaci

    標簽: algorithm

    上傳時間: 2014-01-07

    上傳用戶:aeiouetla

主站蜘蛛池模板: 仙游县| 承德市| 饶河县| 南皮县| 灵川县| 治县。| 乌兰浩特市| 巨鹿县| 察雅县| 清镇市| 台东县| 平顶山市| 方山县| 宝山区| 彰化县| 越西县| 许昌县| 诸城市| 永春县| 罗江县| 永兴县| 绥化市| 阳江市| 平安县| 腾冲县| 都江堰市| 湘乡市| 大冶市| 岗巴县| 洞头县| 壤塘县| 上栗县| 台山市| 马山县| 大宁县| 固镇县| 巴塘县| 平南县| 江安县| 洛川县| 晋宁县|