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

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

Tree-dependent

  • 軟件介紹: 編程環(huán)境: windows2003 +visual stdio c++ .net Ado + SQL2000 /##################################

    軟件介紹: 編程環(huán)境: windows2003 +visual stdio c++ .net Ado + SQL2000 /####################################/ ** SQL設(shè)置: 將在SQL2000下建立schooldata數(shù)據(jù)庫(kù) 導(dǎo)入數(shù)據(jù)文件 導(dǎo)入數(shù)據(jù): data目錄下有school_back數(shù)據(jù)庫(kù)備分文件 操作:用SQL企業(yè)管理器還原數(shù)據(jù)庫(kù)來(lái)導(dǎo)入數(shù)據(jù) 訪問(wèn)本地?cái)?shù)據(jù)庫(kù)服務(wù)器,密碼是自己設(shè)置的那個(gè),操作schooldata數(shù)據(jù)庫(kù)的用戶名和密碼相同 主要用ADO訪問(wèn)數(shù)據(jù)庫(kù),和幾個(gè)顯示數(shù)據(jù)的控件Treectrl,listctrl,datagrid等 程序中有幾個(gè)BUG還沒(méi)解決, 實(shí)現(xiàn)功能: 操作:在選擇查詢條件:選擇一個(gè),tree控件里顯示相關(guān)信息 可以在tree控件里單擊來(lái)顯示每個(gè)ITEM,每個(gè)ITEM相關(guān)信息顯示在LIST控件內(nèi) 雙擊LIST控件顯示具體信息 也可以在窗口里單擊右鍵或操作菜單具體操作 主要功能: 查詢,添加,刪除,顯示“學(xué)院,各系,班級(jí),學(xué)生,教師,社團(tuán),課程”等信息 //====================================================================== 程序還用了Active Skin 對(duì)程序進(jìn)行了換膚

    標(biāo)簽: windows visual stdio 2003

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

    上傳用戶:er1219

  • The UCL common multimedia library implements a number of algorithms and protocols needed by a number

    The UCL common multimedia library implements a number of algorithms and protocols needed by a number of our applications. It compiles standalone on a range of Unix systems (Solaris, Linux, Irix, FreeBSD, MacOSX) and on Windows 95/98/NT/XP. The following protocols/algorithms are included in the library: Base64 encoding/decoding Binary tree Random number HMAC authentication MD5 DES RTP MBus SAP

    標(biāo)簽: number algorithms multimedia implements

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

    上傳用戶:hoperingcong

  • 高效的k-means算法實(shí)現(xiàn)

    高效的k-means算法實(shí)現(xiàn),使用了k-d樹(shù)與局部搜索等提高k-means算法的執(zhí)行效率,同時(shí)包含示例代碼,用c++代碼實(shí)現(xiàn)。 Effecient implementation of k-means algorith, k-d tree and local search strategy are implementd to improve the effeciency, samples are included to show how to use it. All codes are implemented in C++.

    標(biāo)簽: k-means 算法

    上傳時(shí)間: 2016-03-28

    上傳用戶:yulg

  • 赫夫曼編譯碼器: 用哈夫曼編碼進(jìn)行通信可以大大提高信道利用率

    赫夫曼編譯碼器: 用哈夫曼編碼進(jìn)行通信可以大大提高信道利用率,縮短信息傳輸時(shí)間,降低傳輸成本。但是,這要求在發(fā)送端通過(guò)一個(gè)編碼系統(tǒng)對(duì)待傳數(shù)據(jù)預(yù)先編碼,在接收端將傳來(lái)的數(shù)據(jù)進(jìn)行譯碼(復(fù)原)。對(duì)于雙工信道(即可以雙向傳輸信息的信道),每端都需要一個(gè)完整的編/譯碼系統(tǒng)。試為這樣的信息收發(fā)站寫一個(gè)哈夫曼碼的編/譯碼系統(tǒng)。 [基本要求]一個(gè)完整的系統(tǒng)應(yīng)具有以下功能: (1)I:初始化(Initialization)。從終端讀入字符集大小n,以及n個(gè)字符和n個(gè)權(quán)值,建立哈夫曼樹(shù),并將它存于文件hfmTree中。 (2)E:編碼(Encoding)。利用已建好的哈夫曼樹(shù)(如不在內(nèi)存,則從文件hfmTree中讀入),對(duì)文件ToBeTran中的正文進(jìn)行編碼,然后將結(jié)果存入文件CodeFile中。 (3)D:譯碼(Decoding)。利用已建好的哈夫曼樹(shù)將文件CodeFile中的代碼進(jìn)行譯碼,結(jié)果存入文件TextFile中。 (4)P:印代碼文件(Print)。將文件CodeFile以緊湊格式顯示在終端上,每行50個(gè)代碼。同時(shí)將此字符形式的編碼文件寫入文件CodePrin中。 (5)T:印哈夫曼樹(shù)(Tree printing)。將已在內(nèi)存中的哈夫曼樹(shù)以直觀的方式(樹(shù)或凹入表形式)顯示出,同時(shí)將此字符形式的哈夫曼樹(shù)寫入文件TreePrint中。

    標(biāo)簽: 赫夫曼編譯碼 編碼 信道 利用率

    上傳時(shí)間: 2016-04-17

    上傳用戶:zaizaibang

  • --- --- --- --- --- --- Visual Studio Project Renamer For Win9x/NT/2k By Niek Albers nie

    --- --- --- --- --- --- Visual Studio Project Renamer For Win9x/NT/2k By Niek Albers nieka@daansystems.com (C)2001 DaanSystems Homepage: http://www.daansystems.com ------------------------------------ Use with care and on your own risk! Make backups before you use this program. Do a rebuild all on your renamed project. Usage: vsrename <oldname> <newname> <dir> Where: oldname : The old name of your project (typically the xxx from xxx.dsw) newname : The new name for your project dir : The directory tree that holds the project. The program will replace all occurences of oldname to newname in all files and rename all filenames that have the old name in it. It will walk subdirectories.

    標(biāo)簽: Project Renamer Visual Studio

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

    上傳用戶:13517191407

  • Library and command line program for Huffman encoding and decoding both files and chunks of memory.

    Library and command line program for Huffman encoding and decoding both files and chunks of memory. The encoder is a 2 pass encoder. The first pass scans the data and builds the Huffman tree. The second pass encodes the data. The decoder is one pa

    標(biāo)簽: and encoding decoding Library

    上傳時(shí)間: 2016-06-01

    上傳用戶:zhaiye

  • 將在SQL2000下建立schooldata數(shù)據(jù)庫(kù)

    將在SQL2000下建立schooldata數(shù)據(jù)庫(kù),導(dǎo)入數(shù)據(jù)文件 操作:在選擇查詢條件:選擇一個(gè),tree控件里顯示相關(guān)信息 可以在tree控件里單擊來(lái)顯示每個(gè)ITEM,每個(gè)ITEM相關(guān)信息顯示在LIST控件內(nèi) 雙擊LIST控件顯示具體信息 也可以在窗口里單擊右鍵或操作菜單具體操作 主要功能: 查詢,添加,刪除,顯示“學(xué)院,各系,班級(jí),學(xué)生,教師,社團(tuán),課程”等信息 程序還用了Active Skin 對(duì)程序進(jìn)行了換膚!!

    標(biāo)簽: schooldata 2000 SQL 數(shù)據(jù)庫(kù)

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

    上傳用戶:集美慧

  • 一、編程環(huán)境: windows2003 +visual stdio c++ .net,Ado + SQL2000 二、SQL設(shè)置: 將在SQL2000下建立schooldata數(shù)據(jù)庫(kù)

    一、編程環(huán)境: windows2003 +visual stdio c++ .net,Ado + SQL2000 二、SQL設(shè)置: 將在SQL2000下建立schooldata數(shù)據(jù)庫(kù),導(dǎo)入數(shù)據(jù)文件 三、導(dǎo)入數(shù)據(jù): data目錄下有school_back數(shù)據(jù)庫(kù)備分文件 操作:用SQL企業(yè)管理器還原數(shù)據(jù)庫(kù)來(lái)導(dǎo)入數(shù)據(jù) 訪問(wèn)本地?cái)?shù)據(jù)庫(kù)服務(wù)器,密碼是自己設(shè)置的那個(gè),操作schooldata數(shù)據(jù)庫(kù)的用戶名和密碼相同。 主要用ADO訪問(wèn)數(shù)據(jù)庫(kù),和幾個(gè)顯示數(shù)據(jù)的控件Treectrl,listctrl,datagrid等程序中有幾個(gè)BUG還沒(méi)解決, 四、實(shí)現(xiàn)功能: 操作:在選擇查詢條件:選擇一個(gè),tree控件里顯示相關(guān)信息 可以在tree控件里單擊來(lái)顯示每個(gè)ITEM,每個(gè)ITEM相關(guān)信息顯示在LIST控件內(nèi) 雙擊LIST控件顯示具體信息 也可以在窗口里單擊右鍵或操作菜單具體操作 五、主要功能: 查詢,添加,刪除,顯示“學(xué)院,各系,班級(jí),學(xué)生,教師,社團(tuán),課程”等信息 程序還用了Active Skin 對(duì)程序進(jìn)行了換膚!!

    標(biāo)簽: SQL 2000 schooldata windows

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

    上傳用戶:BIBI

  • 超大規(guī)模集成電路設(shè)計(jì)中

    超大規(guī)模集成電路設(shè)計(jì)中,布圖規(guī)劃的布局表示B*-tree和相應(yīng)算法的實(shí)現(xiàn),在linux環(huán)境中編譯運(yùn)行

    標(biāo)簽: 大規(guī)模 集成電路設(shè)計(jì)

    上傳時(shí)間: 2013-11-27

    上傳用戶:sammi

  • vfp 中公司類別的維護(hù)表單

    vfp 中公司類別的維護(hù)表單,通過(guò)windows tree控件實(shí)現(xiàn)

    標(biāo)簽: vfp 表單

    上傳時(shí)間: 2014-05-30

    上傳用戶:二驅(qū)蚊器

主站蜘蛛池模板: 建平县| 格尔木市| 迁西县| 凌云县| 巨鹿县| 清徐县| 家居| 明水县| 香河县| 库车县| 班戈县| 高安市| 临洮县| 巴彦淖尔市| 德保县| 炉霍县| 建水县| 古浪县| 鹰潭市| 临漳县| 舒城县| 来凤县| 贞丰县| 湘乡市| 永顺县| 祁阳县| 沙田区| 丽水市| 洞头县| 大石桥市| 沽源县| 和林格尔县| 衡东县| 巴青县| 简阳市| 商南县| 丁青县| 衡南县| 思南县| 乐至县| 台南市|