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

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

SR-Tree

  • 排序算法、字典和B-樹的C++語言實(shí)現(xiàn) 代碼內(nèi)容 包括以下算法: qui.c sort: quicksort qsort.c sort: qsort ins.c sort: insert

    排序算法、字典和B-樹的C++語言實(shí)現(xiàn) 代碼內(nèi)容 包括以下算法: qui.c sort: quicksort qsort.c sort: qsort ins.c sort: insert sort shl.c sort: shell sort has.c dictionary: hash tables bin.c dictionary: binary tree rbt.c dictionary: red-black trees skl.c dictionary: skip lists ext.c external sort btr.c btree 語言 C++ 編譯平臺(tái) Visual C++ 作者 Thomas Niemann 備注 來自Sorting and Searching Algorithms:A Cookbook

    標(biāo)簽: sort qsort quicksort insert

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

    上傳用戶:silenthink

  • 學(xué)籍管理系統(tǒng) 系統(tǒng)是在VC++6.0和SQL Server 2000下開發(fā)的. 數(shù)據(jù)庫在Database目錄下,在SQLSERVER的查詢分析器中執(zhí)行即可生成數(shù)據(jù)庫. 源程序在Src目錄中.

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

    標(biāo)簽: SQLSERVER Database Server 2000

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

    上傳用戶:wuyuying

  • 物流分析工具包。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

    標(biāo)簽: location location-allocation Continuous alternate

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

    上傳用戶:kikye

  • 基于內(nèi)容的多媒體數(shù)據(jù)庫檢索算法

    基于內(nèi)容的多媒體數(shù)據(jù)庫檢索算法,VP-Tree算法。

    標(biāo)簽: 多媒體 數(shù)據(jù)庫檢索 算法

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

    上傳用戶:moerwang

  • ---- Huffman 算法的不同實(shí)現(xiàn) 本目錄下的程序用8種不同的方式實(shí)現(xiàn)了Huffman編碼算法

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

    標(biāo)簽: Huffman 算法 目錄 方式

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

    上傳用戶:xg262122

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

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

    標(biāo)簽: Spring good java AOP

    上傳時(shí)間: 2014-02-27

    上傳用戶:hasan2015

  • 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.

    標(biāo)簽: applications processing Wavelets widely

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

    上傳用戶:hongmo

  • algorithm

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

    標(biāo)簽: algorithm

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

    上傳用戶:aeiouetla

  • eclipse 從入門到精通的源碼,有了這個(gè)如果學(xué)會(huì)的話,可以毫無質(zhì)疑的說我會(huì)SWT編程.包括:thread,button,canvas,combol,filllayout,griddata,prog

    eclipse 從入門到精通的源碼,有了這個(gè)如果學(xué)會(huì)的話,可以毫無質(zhì)疑的說我會(huì)SWT編程.包括:thread,button,canvas,combol,filllayout,griddata,progressbar,qq,tree,table,slider,

    標(biāo)簽: filllayout griddata eclipse button

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

    上傳用戶:han_zh

  • 演示對(duì)樹的兄弟結(jié)點(diǎn)和子結(jié)點(diǎn)的添加和刪除的方法。Swing組件JFrame

    演示對(duì)樹的兄弟結(jié)點(diǎn)和子結(jié)點(diǎn)的添加和刪除的方法。Swing組件JFrame, java.awt.event.* 包的使用ax.swing.* 包 的使用, javax.swing.tree.* 使用。

    標(biāo)簽: JFrame Swing 刪除

    上傳時(shí)間: 2015-08-13

    上傳用戶:vodssv

主站蜘蛛池模板: 化州市| 霍林郭勒市| 婺源县| 宣恩县| 景泰县| 楚雄市| 宝山区| 郎溪县| 西盟| 赤壁市| 康乐县| 彭泽县| 青岛市| 通榆县| 额尔古纳市| 太原市| 鸡泽县| 白水县| 锡林浩特市| 西和县| 长汀县| 麻栗坡县| 盘锦市| 广安市| 通州区| 开原市| 新竹县| 西城区| 左贡县| 张掖市| 广州市| 望城县| 依兰县| 林西县| 青海省| 马龙县| 嘉峪关市| 广宗县| 尼木县| 彰化县| 新昌县|