問題描述 序列Z=<B,C,D,B>是序列X=<A,B,C,B,D,A,B>的子序列,相應(yīng)的遞增下標(biāo)序列為<2,3,5,7>。 一般地,給定一個序列X=<x1,x2,…,xm>,則另一個序列Z=<z1,z2,…,zk>是X的子序列,是指存在一個嚴(yán)格遞增的下標(biāo)序列〈i1,i2,…,ik〉使得對于所有j=1,2,…,k使Z中第j個元素zj與X中第ij個元素相同。 給定2個序列X和Y,當(dāng)另一序列Z既是X的子序列又是Y的子序列時,稱Z是序列X和Y的公共子序列。 你的任務(wù)是:給定2個序列X、Y,求X和Y的最長公共子序列Z。
上傳時間: 2014-01-25
上傳用戶:netwolf
該數(shù)據(jù)包系在原有數(shù)據(jù)包的基礎(chǔ)上收集整理的近 500 多種特洛伊木馬、后門程序、網(wǎng)絡(luò)蠕蟲。在能攔截近 500 多種特洛伊木馬、后門程序、網(wǎng)絡(luò)蠕蟲的同時還能保持用戶原有設(shè)置的連貫性。因此,敬請放心使用。 到目前為止該數(shù)據(jù)包已經(jīng)能攔截的特洛伊木馬、后門程序、網(wǎng)絡(luò)蠕蟲總數(shù)已經(jīng)接近 500 種,包括世界最流行的SubSeven系列、BO系列、The Thing系列;國產(chǎn)的“廣外女生”、“網(wǎng)絡(luò)神偷”、“冰河”、“東方魔眼”;還有最近流行的“SCO炸彈”、“惡鷹”、“沖擊波”、“蠕蟲王”、“小郵差”、“灰鴿子”。這些規(guī)則極大增強用戶的網(wǎng)絡(luò)安全。 使用方法:解壓后將IpRule.DAT復(fù)制到SkyNet\Rules下,覆蓋原有的IpRule.DAT,打開防火墻將安全級別設(shè)置為“自定義”。OK
標(biāo)簽: 500 數(shù)據(jù)包 木馬 程序
上傳時間: 2013-11-30
上傳用戶:498732662
無監(jiān)督分類方法,可以對一堆數(shù)值自動的歸類
標(biāo)簽: 分
上傳時間: 2014-12-21
上傳用戶:古谷仁美
Visual C++ Windows Shell Programming Welcome to Visual C++ Windows Shell Programming! With this book, you ll learn how to program the Windows Shell, customize its behavior and integrate your applications with it. You ll discover how to use and modify its features to best effect, and the way to call shell API functions whose documentation is scant. Programming the shell isn t difficult, but few books explain the subject in its entirety.
標(biāo)簽: Programming Windows Visual Shell
上傳時間: 2014-11-27
上傳用戶:zhangjinzj
this book is from mit press. it introducts how to design program more than code program.this kind book is rare in bookstore.
標(biāo)簽: program this introducts design
上傳時間: 2014-11-29
上傳用戶:lunshaomo
國內(nèi)關(guān)于storm的資料很少額 Delphi的相關(guān)資料更是到處都找不到甚至Google都找不到 我就寫了個分享啦 里面有很詳細(xì)的注釋 使用Storm.dll解壓MPQ文件的演示 只是一個簡單的演示 更強大的MPQ工具和其他源碼請看Http://Www.WuHansen.Com/soft 雖然很簡單 但是我也是研究了一定時間的 公布出來讓想研究的朋友少走彎路 程序使用很簡單 假設(shè)程序名MPQ.exe 有個mpq文件demo.w3m包含war3map.j要把它解壓出來 輸入mpq demo.w3m war3map.j 即可 Storm.dll在暴雪的游戲下一般都有(MPQ1格式的 MPQ2格式現(xiàn)在研究得比較少)
標(biāo)簽: Delphi Google storm Storm
上傳時間: 2013-12-21
上傳用戶:Late_Li
ABBYY FineReader 8.0專業(yè)版是最新、最準(zhǔn)確的ABBYY OCR軟體版本。它可以為用戶提供 最高級別識字精確率,是一個非常節(jié)省時間的好方案。FineReader允許你將各種紙張和 電子文件轉(zhuǎn)換、編輯以及重新使用,包括:雜誌、報紙、傳真、複製和PDF文件。
標(biāo)簽: ABBYY FineReader 8.0 OCR
上傳時間: 2016-02-11
上傳用戶:q123321
These Simulink blocks contain transfer functions that model the pressure and flow transients for axisymmetric 2D viscous flow of a compressible fluid in a straight rigid circular cross section pipelines. Three models are available: (1) pressures at the ends (2) flow rates at the ends (3) pressure at one end and flow rate at the other Filtering is incorporated to reduce numerical oscillation (Gibbs phenomenon). See J. Dyn. Systems, Meas. & Control vol 122 (2000) pp. 153-162.
標(biāo)簽: transients functions Simulink transfer
上傳時間: 2014-01-22
上傳用戶:Shaikh
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即為所有點對的最短路徑矩陣 3)算法小結(jié):此算法簡單有效,由于三重循環(huán)結(jié)構(gòu)緊湊,對于稠密圖,效率要高于執(zhí)行|V|次Dijkstra算法。時間復(fù)雜度O(n^3)。 考慮下列變形:如(I,j)∈E則dis[I,j]初始為1,else初始為0,這樣的Floyd算法最后的最短路徑矩陣即成為一個判斷I,j是否有通路的矩陣。更簡單的,我們可以把dis設(shè)成boolean類型,則每次可以用“dis[I,j]:=dis[I,j]or(dis[I,k]and dis[k,j])”來代替算法描述中的藍(lán)色部分,可以更直觀地得到I,j的連通情況。
標(biāo)簽: Floyd-Warshall Shortest Pairs Paths
上傳時間: 2013-12-01
上傳用戶:dyctj
out< "please input the number of the nodes"<<endl cin>>nodesNum cout<<"please input the graph"<<endl for( i = 1 i<=nodesNum i++) for( j = 1 j <= nodesNum j++) cin>>graph[i][j] */
標(biāo)簽: lt the nodesNum number
上傳時間: 2013-11-29
上傳用戶:libinxny
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1