WHAT MIME64 IS: MIME64 is an encoding described in RFC1341 as MIME base64.Its purpose is to encode binary files into ASCII so that they may be passedthrough e-mail gates. In this regard, MIME64 is similar to UUENCODE.Although most binaries these days are transmitted using UUENCODE, Ihave seen a few using MIME64, and I have had requests from friends thatI decode MIME64 files that have fallen into their hands. As long assome MIME64 continues to exist, a package such as this one is usefulto have.
標(biāo)簽: MIME described 64 encoding
上傳時(shí)間: 2013-12-17
上傳用戶:maizezhen
This project attempts to implement a Database using B+Tree. The project has developed a DATABASE SYSTEM with lesser memory consumption. Its API includes simple SQL Statements and the output is displayed on the screen. Certain applications for which several features of existing databases like concurrency control, transaction management, security features are not enabled. B+Trees can be used as an index for factor access to the data. Help facility is provided to know the syntax of SQL Statements.
標(biāo)簽: project implement developed Database
上傳時(shí)間: 2013-12-25
上傳用戶:semi1981
If we have two individually sorted vectors "a" and "b" but they are not sorted with respect to each other and we want to merge them into vector "c" such that "c" is also a sorted vector. Then c=mergesorted(a,b) can be used.
標(biāo)簽: sorted individually respect vectors
上傳時(shí)間: 2015-09-23
上傳用戶:comua
第7章 Java B/S結(jié)構(gòu)編程 實(shí)例76 簡(jiǎn)單的Servlet程序 實(shí)例77 簡(jiǎn)單的留言簿 實(shí)例78 JSP+Java Bean的計(jì)數(shù)器 實(shí)例79 數(shù)據(jù)庫(kù)查詢 實(shí)例80 文件的上傳下載 實(shí)例81 收發(fā)E-mail 實(shí)例82 B/S結(jié)構(gòu)的聊天室 實(shí)例83 網(wǎng)上選課 實(shí)例84 B/S結(jié)構(gòu)的商業(yè)應(yīng)用——購(gòu)物車 實(shí)例85 通過(guò)JSP調(diào)用Applet程序 實(shí)例86 JSP與XML的結(jié)合
標(biāo)簽: Java Servlet Bean JSP
上傳時(shí)間: 2013-12-23
上傳用戶:skfreeman
)一個(gè)PB的應(yīng)用程序, 能實(shí)現(xiàn)以下功能: a.新增員工資料 b.修改員工資料 c.刪除員工資料 d.按姓名查找員工資料(能模糊查找, 例如輸入"林", 則所有姓或名中含有"林"字的 員工全列出來(lái).) e.系統(tǒng)啟動(dòng)時(shí), 針對(duì)今天為該員工生日的, 則自動(dòng)彈出提示進(jìn)行祝福. 2) 員工資料的數(shù)據(jù)必須有: 工號(hào)(為主鍵), 姓名, 出生日期, 入職日期, 部門, 職務(wù) 3) 數(shù)據(jù)庫(kù)類型為ASA8.0
上傳時(shí)間: 2016-01-03
上傳用戶:BIBI
n皇后問(wèn)題求解(8<=n<=1000) a) 皇后個(gè)數(shù)的設(shè)定 在指定文本框內(nèi)輸入皇后個(gè)數(shù)即可,注意: 皇后個(gè)數(shù)在8和1000 之間(包括8和1000) b) 求解 點(diǎn)擊<Solve>按鈕即可進(jìn)行求解. c) 求解過(guò)程顯示 在標(biāo)有Total Collision的靜態(tài)文本框中將輸出當(dāng)前棋盤(pán)上的皇后總沖突數(shù). 當(dāng)沖突數(shù)降到0時(shí),求解完畢. d) 求解結(jié)果顯示 程序可以圖形化顯示8<=n<=50的皇后求解結(jié)果. e) 退出程序,點(diǎn)擊<Exit>即可退出程序.
上傳時(shí)間: 2016-01-28
上傳用戶:ztj182002
Floyd-Warshall算法描述 1)適用范圍: a)APSP(All Pairs Shortest Paths) b)稠密圖效果最佳 c)邊權(quán)可正可負(fù) 2)算法描述: a)初始化:dis[u,v]=w[u,v] b)For k:=1 to n For i:=1 to n For j:=1 to n If dis[i,j]>dis[i,k]+dis[k,j] Then Dis[I,j]:=dis[I,k]+dis[k,j] c)算法結(jié)束:dis即為所有點(diǎn)對(duì)的最短路徑矩陣 3)算法小結(jié):此算法簡(jiǎn)單有效,由于三重循環(huán)結(jié)構(gòu)緊湊,對(duì)于稠密圖,效率要高于執(zhí)行|V|次Dijkstra算法。時(shí)間復(fù)雜度O(n^3)。 考慮下列變形:如(I,j)∈E則dis[I,j]初始為1,else初始為0,這樣的Floyd算法最后的最短路徑矩陣即成為一個(gè)判斷I,j是否有通路的矩陣。更簡(jiǎn)單的,我們可以把dis設(shè)成boolean類型,則每次可以用“dis[I,j]:=dis[I,j]or(dis[I,k]and dis[k,j])”來(lái)代替算法描述中的藍(lán)色部分,可以更直觀地得到I,j的連通情況。
標(biāo)簽: Floyd-Warshall Shortest Pairs Paths
上傳時(shí)間: 2013-12-01
上傳用戶:dyctj
第7章 Java B/S結(jié)構(gòu)編程 253 實(shí)例76 簡(jiǎn)單的Servlet程序 254 實(shí)例77 簡(jiǎn)單的留言簿 256 實(shí)例78 JSP+Java Bean的計(jì)數(shù)器 258 實(shí)例79 數(shù)據(jù)庫(kù)查詢 260 實(shí)例80 文件的上傳下載 262 實(shí)例81 收發(fā)E-mail 267 實(shí)例82 B/S結(jié)構(gòu)的聊天室 269 實(shí)例83 網(wǎng)上選課 276 實(shí)例84 B/S結(jié)構(gòu)的商業(yè)應(yīng)用——購(gòu)物車 282 實(shí)例85 通過(guò)JSP調(diào)用Applet程序 285 實(shí)例86 JSP與XML的結(jié)合 2
標(biāo)簽: Java Servlet Bean 253
上傳時(shí)間: 2016-03-07
上傳用戶:maizezhen
Program main BIOS image | | /B - Program Boot Block | | /N - Program NVRAM | | /C - Destroy CMOS checksum | | /E - Program Embedded Controller Block | | /K - Program all non-critical blocks | | /Kn - Program n th non-critical block only(n=0-7) | | /Q - Silent execution | | /REBOOT - Reboot after programming | | /X - Don t Check ROM ID | | /S - Display current system s ROMID | | /Ln - Load CMOS defaults
標(biāo)簽: Program Destroy Block NVRAM
上傳時(shí)間: 2016-07-26
上傳用戶:wfl_yy
The task of clustering Web sessions is to group Web sessions based on similarity and consists of maximizing the intra- group similarity while minimizing the inter-group similarity. The first and foremost question needed to be considered in clustering W b sessions is how to measure the similarity between Web sessions.However.there are many shortcomings in traditiona1 measurements.This paper introduces a new method for measuring similarities between Web pages that takes into account not only the URL but also the viewing time of the visited web page.Yhen we give a new method to measure the similarity of Web sessions using sequence alignment and the similarity of W eb page access in detail Experiments have proved that our method is valid and e幣cient.
標(biāo)簽: sessions clustering similarity Web
上傳時(shí)間: 2014-01-11
上傳用戶:songrui
蟲(chóng)蟲(chóng)下載站版權(quán)所有 京ICP備2021023401號(hào)-1