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

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

AVL-Tree

  • Complete support for EBNF notation; Object-oriented parser design; C++ output; Deterministic bottom-

    Complete support for EBNF notation; Object-oriented parser design; C++ output; Deterministic bottom-up "shift-reduce" parsing; SLR(1), LALR(1) and LR(1) table construction methods; Automatic parse tree creation; Possibility to output parse tree in XML format; Verbose conflict diagnostics; Generation of tree traverse procedures

    標簽: Object-oriented Deterministic Complete notation

    上傳時間: 2014-11-29

    上傳用戶:kr770906

  • 此軟件應用了桌面表單

    此軟件應用了桌面表單,自定義菜單,常用工具條,數據表加密,TREE等控件技術。新學者可以借鑒。人性與個性化的界面設計,嘿嘿,還真值得一看

    標簽: 軟件 表單

    上傳時間: 2015-01-18

    上傳用戶:遠遠ssad

  • 常用數據結構算法代碼庫

    常用數據結構算法代碼庫,包括AVL樹,鏈表,堆棧,hash,排序等

    標簽: 數據結構 代碼 算法

    上傳時間: 2014-01-15

    上傳用戶:1159797854

  • This scheme is initiated by Ziv and Lempel [1]. A slightly modified version is described by Storer a

    This scheme is initiated by Ziv and Lempel [1]. A slightly modified version is described by Storer and Szymanski [2]. An implementation using a binary tree is proposed by Bell [3]. The algorithm is quite simple: Keep a ring buffer, which initially contains "space" characters only. Read several letters from the file to the buffer. Then search the buffer for the longest string that matches the letters just read, and send its length and position in the buffer.

    標簽: initiated described modified slightly

    上傳時間: 2014-01-09

    上傳用戶:sk5201314

  • Contains a complete archiver by Haruhiko Okumura. The archiver uses an LZ engine whose output is c

    Contains a complete archiver by Haruhiko Okumura. The archiver uses an LZ engine whose output is compressed with static Huffman. The file is chopped into pieces which all get their own independent set of Huffman tree s. ARJ 2.41, ZIP 2.0 and PKZIP 2.04g use essentially the same method. ZOO and LHA even use excactly the same method.

    標簽: archiver Contains complete Haruhiko

    上傳時間: 2014-01-17

    上傳用戶:himbly

  • 項目描述: Fink is an attempt to bring the full world of Unix Open Source software to Darwin and Mac OS

    項目描述: Fink is an attempt to bring the full world of Unix Open Source software to Darwin and Mac OS X. Packages are downloaded and built automatically and installed into a tree managed by dpkg. Fink試圖將Unix開源軟件世界帶入到 Darwin 和Mac OS X。工具包可以被下載和自動生成,并安裝到由dpkg管理的樹狀結構中。 來源: http://sourceforge.net/projects/fink/

    標簽: software attempt Darwin Source

    上傳時間: 2015-04-17

    上傳用戶:tedo811

  • 一、編程環境: windows2003 +visual stdio c++ .net,Ado + SQL2000 二、SQL設置: 將在SQL2000下建立schooldata數據庫

    一、編程環境: windows2003 +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控件顯示具體信息 也可以在窗口里單擊右鍵或操作菜單具體操作 五、主要功能: 查詢,添加,刪除,顯示“學院,各系,班級,學生,教師,社團,課程”等信息 程序還用了Active Skin 對程序進行了換膚!!

    標簽: SQL 2000 schooldata windows

    上傳時間: 2015-04-26

    上傳用戶:zyt

  • 數據結構 array.h: 安全數組

    數據結構 array.h: 安全數組,可自動增長大小(隨機訪問,但擴充時效率低) linkedlist.h: 普通鏈表(可隨機訪問,但訪問效率低) dclinkedlist: 雙向循環鏈表(不可隨機訪問,但插入、遍歷的效率都比普通鏈表高) hashtable.h: 哈希表(使用鍵值標識元素,鍵值一樣的元素即認為相等,需重載 == 運算符并由用戶定義哈希函數) binstree.h: 二叉搜索樹(需重載 == 和 < 運算符) avltree.h: AVL 樹(需重載 == 和 < 運算符)

    標簽: array 數據結構 數組

    上傳時間: 2013-12-18

    上傳用戶:zaizaibang

  • 我的算法作業

    我的算法作業,求一個在總花費小于1500的條件下從源結點到目的結點的最短路徑,源代碼Tree.cpp(C++語言編寫,VC++6.0 IDE下調試通過),利用的是分支定界算法。可執行文件Tree.exe說明在ReadMeFirst請按照說明使用。

    標簽: 算法

    上傳時間: 2015-04-30

    上傳用戶:watch100

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

    排序算法、字典和B-樹的C++語言實現 代碼內容 包括以下算法: 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++ 編譯平臺 Visual C++ 作者 Thomas Niemann 備注 來自Sorting and Searching Algorithms:A Cookbook

    標簽: sort qsort quicksort insert

    上傳時間: 2013-12-15

    上傳用戶:silenthink

主站蜘蛛池模板: 化州市| 孙吴县| 井冈山市| 察隅县| 汉阴县| 宁海县| 罗城| 中牟县| 潢川县| 游戏| 汕尾市| 芜湖市| 两当县| 宁安市| 罗山县| 宁明县| 额济纳旗| 绥化市| 灵石县| 峨山| 龙州县| 修水县| 丰台区| 米脂县| 犍为县| 开原市| 金塔县| 洛隆县| 怀柔区| 栾川县| 扶余县| 绥德县| 广西| 临高县| 沈丘县| 望城县| 林周县| 延长县| 陆河县| 遂平县| 革吉县|