國(guó)內(nèi)關(guān)于storm的資料很少額 Delphi的相關(guān)資料更是到處都找不到甚至Google都找不到 我就寫(xiě)了個(gè)分享啦 里面有很詳細(xì)的注釋 使用Storm.dll解壓MPQ文件的演示 只是一個(gè)簡(jiǎn)單的演示 更強(qiáng)大的MPQ工具和其他源碼請(qǐng)看Http://Www.WuHansen.Com/soft 雖然很簡(jiǎn)單 但是我也是研究了一定時(shí)間的 公布出來(lái)讓想研究的朋友少走彎路 程序使用很簡(jiǎn)單 假設(shè)程序名MPQ.exe 有個(gè)mpq文件demo.w3m包含war3map.j要把它解壓出來(lái) 輸入mpq demo.w3m war3map.j 即可 Storm.dll在暴雪的游戲下一般都有(MPQ1格式的 MPQ2格式現(xiàn)在研究得比較少)
標(biāo)簽: Delphi Google storm Storm
上傳時(shí)間: 2013-12-21
上傳用戶:Late_Li
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
上傳時(shí)間: 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即為所有點(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類(lèi)型,則每次可以用“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
EMD方法的一個(gè)例子, 鍵入 >>U5() >>U6()
標(biāo)簽: EMD
上傳時(shí)間: 2014-02-08
上傳用戶:ddddddos
用匯編語(yǔ)言實(shí)現(xiàn)的 音樂(lè)演奏 這是一個(gè)音樂(lè)程序,按大寫(xiě)字母“A”,唱樂(lè)曲“瑪麗有只小羔羊”; 按大寫(xiě)字母“B”,唱樂(lè)曲“太湖船” 按大寫(xiě)字母“C”,唱樂(lè)曲“祝福歌” 按"X"鍵,退出
上傳時(shí)間: 2014-01-13
上傳用戶:zhouli
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
上傳時(shí)間: 2013-11-29
上傳用戶:libinxny
數(shù)據(jù)結(jié)構(gòu)(嚴(yán)慰敏)配套純c代碼實(shí)驗(yàn)十 typedef int InfoType // 定義其它數(shù)據(jù)項(xiàng)的類(lèi)型 typedef int KeyType // 定義RedType類(lèi)型的關(guān)鍵字為整型 struct RedType // 記錄類(lèi)型(同c10-1.h) { KeyType key // 關(guān)鍵字項(xiàng) InfoType otherinfo // 其它數(shù)據(jù)項(xiàng) } typedef char KeysType // 定義關(guān)鍵字類(lèi)型為字符型 #include"c1.h" #include"c10-3.h" void InitList(SLList &L,RedType D[],int n) { // 初始化靜態(tài)鏈表L(把數(shù)組D中的數(shù)據(jù)存于L中) char c[MAX_NUM_OF_KEY],c1[MAX_NUM_OF_KEY] int i,j,max=D[0].key //
標(biāo)簽: typedef int InfoType KeyType
上傳時(shí)間: 2016-03-03
上傳用戶:2404
INTERNATIONAL ORGANIZATION FOR STANDARDIZATION ORGANISATION INTERNATIONALE NORMALISATION ISO/IEC JTC 1/SC 29/WG 11 CODING OF MOVING PICTURES AND AUDIO
標(biāo)簽: STANDARDIZATION INTERNATIONALE INTERNATIONAL NORMALISATION
上傳時(shí)間: 2016-03-04
上傳用戶:siguazgb
s1.c是server,c.c是client, server負(fù)責(zé)接收client傳的數(shù)字進(jìn)行運(yùn)算並回傳,運(yùn)用了同步的機(jī)制。編譯須加 -lsocket -lpthread -lrt
標(biāo)簽: server
上傳時(shí)間: 2014-01-02
上傳用戶:athjac
若在矩陣Am×n中存在一個(gè)元素A[i-1,j-1],其滿足A[i-1,j-1]是第i行元素中最小值,且又是第j列元素中最大值,則稱(chēng)此元素為該矩陣的一個(gè)馬鞍點(diǎn)。用二維數(shù)組存儲(chǔ)矩陣Am×n ,設(shè)計(jì)算法求出矩陣中所有馬鞍點(diǎn)。
上傳時(shí)間: 2013-12-13
上傳用戶:ynwbosss
蟲(chóng)蟲(chóng)下載站版權(quán)所有 京ICP備2021023401號(hào)-1