國內(nèi)關(guān)于storm的資料很少額 Delphi的相關(guān)資料更是到處都找不到甚至Google都找不到 我就寫了個(gè)分享啦 里面有很詳細(xì)的注釋 使用Storm.dll解壓MPQ文件的演示 只是一個(gè)簡單的演示 更強(qiáng)大的MPQ工具和其他源碼請(qǐng)看Http://Www.WuHansen.Com/soft 雖然很簡單 但是我也是研究了一定時(shí)間的 公布出來讓想研究的朋友少走彎路 程序使用很簡單 假設(shè)程序名MPQ.exe 有個(gè)mpq文件demo.w3m包含war3map.j要把它解壓出來 輸入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é):此算法簡單有效,由于三重循環(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是否有通路的矩陣。更簡單的,我們可以把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
上傳時(shí)間: 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
上傳時(shí)間: 2013-11-29
上傳用戶:libinxny
數(shù)據(jù)結(jié)構(gòu)(嚴(yán)慰敏)配套純c代碼實(shí)驗(yàn)十 typedef int InfoType // 定義其它數(shù)據(jù)項(xiàng)的類型 typedef int KeyType // 定義RedType類型的關(guān)鍵字為整型 struct RedType // 記錄類型(同c10-1.h) { KeyType key // 關(guān)鍵字項(xiàng) InfoType otherinfo // 其它數(shù)據(jù)項(xiàng) } typedef char KeysType // 定義關(guān)鍵字類型為字符型 #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
若在矩陣Am×n中存在一個(gè)元素A[i-1,j-1],其滿足A[i-1,j-1]是第i行元素中最小值,且又是第j列元素中最大值,則稱此元素為該矩陣的一個(gè)馬鞍點(diǎn)。用二維數(shù)組存儲(chǔ)矩陣Am×n ,設(shè)計(jì)算法求出矩陣中所有馬鞍點(diǎn)。
上傳時(shí)間: 2013-12-13
上傳用戶:ynwbosss
進(jìn)銷存管理系統(tǒng)(JSP版) 【系統(tǒng)配置】 先將此目錄下的\WEB-INF\classes\JXC 為JavaBean 本系統(tǒng)這里使用的ACCESS數(shù)據(jù)數(shù)據(jù)庫。 數(shù)據(jù)源名稱:JXC, (也可以改變j\WEB-INF\classes\JXC\db.properties的文件)。 數(shù)據(jù)庫為: jxcDB.mdb 編寫環(huán)境: win2000+j2sdk1.4.1_01+tomcat4.1.2.7
標(biāo)簽: WEB-INFclassesJXC JavaBean ACCESS JSP
上傳時(shí)間: 2014-01-03
上傳用戶:努力努力再努力
Linux各項(xiàng)系統(tǒng)開機(jī)服務(wù)的功能/Linux基礎(chǔ):系統(tǒng)服務(wù)/LINUX啟動(dòng)服務(wù)詳解/LINUX守護(hù)進(jìn)程介紹/linux系統(tǒng)服務(wù)詳解FC5/Linux系統(tǒng)中的主要服務(wù)/linux下系統(tǒng)服務(wù)及解釋/linux主要系統(tǒng)服務(wù)介紹/Redhat Linux下常用服務(wù)介紹/和服務(wù)相關(guān)的那些事/用LILO輕松實(shí)現(xiàn)多重啟動(dòng)/優(yōu)化Linux 系統(tǒng)服務(wù)來提高引導(dǎo)速度/
標(biāo)簽: Linux LINUX linux 服務(wù)
上傳時(shí)間: 2016-03-26
上傳用戶:wangyi39
A* sudo sudo/* B* adduser script adduser C* rmuser script rmuser E* tout tout/* F* dumdum dumdum G* lostfile lostfile H* Mkfl.localsys Makefile.localsys I* spacegripe spacegripe J* sendmail.cf sendmail.cf N* remote remote.c O* distributed conrol distrib/* P* hosts and name server makerevhosts Q* xargs xargs/*
標(biāo)簽: adduser script rmuser sudo
上傳時(shí)間: 2016-03-29
上傳用戶:gxrui1991
蟲蟲下載站版權(quán)所有 京ICP備2021023401號(hào)-1