二維FDTD程序,采用PML邊界s 用pml和mur分別計(jì)算j=1處的Hz(i,1).計(jì)算空間擴(kuò)大到400*400,不加邊界,運(yùn)行相同的時(shí)間步
上傳時(shí)間: 2013-12-22
上傳用戶(hù):talenthn
palm編成,這種書(shū)很少,有興趣看看 Title: Palm Programming: The Developer s Guide URL: http://safari.oreilly.com/JVXSL.asp?x=1&mode=section&sortKey=rank&sortOrder=desc&view=book&xmlid=1-56592-525-4&open=false&srchText=palm+programming&code=&h=&m=&l=1&catid=&s=1&b=1&f=1&t=1&c=1&u=1&page=0 ISBN: 1-56592-525-4 Author: Julie McKeehan/ Neil Rhodes Publisher: O Reilly Page: 478 Edition: 1st edition (December 1998) Catalog: PDA programming / Palm Format: pdf Size: 2.06M Supplier: Summary: Emerging as the bestselling hand-held computers of all time, PalmPilots have spawned intense developer activity and a fanatical following. Used by Palm in their developer training, this tutorial-style book shows intermediate to experienced C programmers how to build a Palm application from the ground up. Includes a CD-ROM with source code and third-party developer tools
標(biāo)簽: Programming Developer oreilly safari
上傳時(shí)間: 2013-12-10
上傳用戶(hù):litianchu
考察例1 4 - 8中的1 4個(gè)點(diǎn)。A中的最近點(diǎn)對(duì)為(b,h),其距離約為0 . 3 1 6。B中最近點(diǎn)對(duì)為 (f, j),其距離為0 . 3,因此= 0 . 3。當(dāng)考察 是否存在第三類(lèi)點(diǎn)時(shí),除d, g, i, l, m 以外 的點(diǎn)均被淘汰,因?yàn)樗鼈兙喾指罹€(xiàn)x= 1的 距離≥ 。RA ={d, i, m},RB= {g, l},由 于d 和m 的比較區(qū)中沒(méi)有點(diǎn),只需考察i 即可。i 的比較區(qū)中僅含點(diǎn)l。計(jì)算i 和l 的距離,發(fā)現(xiàn)它小于,因此(i, l) 是最近
標(biāo)簽:
上傳時(shí)間: 2013-12-03
上傳用戶(hù):66666
Java Regex Primer Since version 1.4, Java has had support for Regular Expressions in the core API. Java Regex follows the same basic principles used in other languages, just withdi erent access methods, and some subtledi erences with the patterns. This primer is aimed towards developers already familiar with regex in other languages wanting a brief outline of its support in Java. It may also be beneficial to developers learning regex if used in conjunction with detailed documentation explaining the construction of regex patterns. Reading the javadoc forjava.util.regex. Pattern is a must to see how the Java regex patterns aredi erent from other languages such as Perl. Most of the functions discussed herin are from thejava.util.regex. Matcher class with a few fromjava.util.regex. Pattern. Reading this text in conjunction with the javadoc of those classes is advised.
標(biāo)簽: Java Expressions Regular version
上傳時(shí)間: 2013-12-18
上傳用戶(hù):lanhuaying
本程序演示for-for的二重循環(huán)結(jié)構(gòu)。外層for語(yǔ)句的循環(huán)變量是i,控制總共顯示多少行 內(nèi)層for語(yǔ)句 的循環(huán)變量是j,控制每行顯示多少字符。
標(biāo)簽: for-for for 程序 循環(huán)結(jié)構(gòu)
上傳時(shí)間: 2013-12-23
上傳用戶(hù):gundan
本教程舉例說(shuō)明了如何使用 ADO 編程模型對(duì)數(shù)據(jù)源進(jìn)行查詢(xún)及更新。教程首先講述了完成此項(xiàng)任務(wù)的必要步驟,然后分別通過(guò) Microsoft® Visual Basic、以 VC++ Extensions 為特征的 Microsoft® Visual C++、Microsoft® Visual Basic® 、Scripting Edition 和以 ADO for Windows Foundation Classes (ADO/WFC) 為特征的 Microsoft® Visual J++® 進(jìn)行更為具體的說(shuō)明。
上傳時(shí)間: 2015-10-13
上傳用戶(hù):330402686
經(jīng)典C語(yǔ)言程序設(shè)計(jì)100例1-10 如【程序1】 題目:有1、2、3、4個(gè)數(shù)字,能組成多少個(gè)互不相同且無(wú)重復(fù)數(shù)字的三位數(shù)?都是多少? 1.程序分析:可填在百位、十位、個(gè)位的數(shù)字都是1、2、3、4。組成所有的排列后再去 掉不滿(mǎn)足條件的排列。 2.程序源代碼: main() { int i,j,k printf("\n") for(i=1 i<5 i++) /*以下為三重循環(huán)*/ for(j=1 j<5 j++) for (k=1 k<5 k++) { if (i!=k&&i!=j&&j!=k) /*確保i、j、k三位互不相同*/ printf("%d,%d,%d\n",i,j,k) } }
標(biāo)簽: 100 10 C語(yǔ)言 程序設(shè)計(jì)
上傳時(shí)間: 2013-12-14
上傳用戶(hù):hfmm633
代入法的啟發(fā)示搜索 我的代碼實(shí)現(xiàn)是:按照自然語(yǔ)言各字母出現(xiàn)頻率的大小從高到低(已經(jīng)有人作國(guó)統(tǒng)計(jì)分析了)先生成一張字母出現(xiàn)頻率統(tǒng)計(jì)表(A)--------(e),(t,a,o,i,n,s,h,r),(d,l),(c,u,m,w,f,g,y,p,b),(v,k,j,x,q,z) ,再對(duì)密文字母計(jì)算頻率,并按頻率從高到低生成一張輸入密文字母的統(tǒng)計(jì)表(B),通過(guò)兩張表的對(duì)應(yīng)關(guān)系,不斷用A中的字母去替換B中的字母,搜索不成功時(shí)就回退,在這里回朔是一個(gè)關(guān)鍵。
上傳時(shí)間: 2015-10-24
上傳用戶(hù):wanqunsheng
使用說(shuō)明:請(qǐng)您先正確設(shè)置數(shù)據(jù)庫(kù)及JDBC驅(qū)動(dòng)。 參考: http://blog.raofeng.com/love/kiss/archives/2006/16.html http://blog.raofeng.com/love/kiss/archives/2006/13.html http://dev.mysql.com/downloads/connector/j/3.1.html下載JDBC驅(qū)動(dòng) 先新建一數(shù)據(jù)庫(kù)(默認(rèn)名為jspmo)建立數(shù)據(jù)庫(kù)及表格的命令都在sql.txt內(nèi),可以直接復(fù)制到數(shù)據(jù)庫(kù)里運(yùn)行。 默認(rèn)管理員名為: admin ,密碼為:jspmo.com 請(qǐng)修改config.jsp中的name(管理員名),password(管理員密碼),sitename(留言本標(biāo)題),copyright(版權(quán)信息). 以及conn.jsp中的host(數(shù)據(jù)庫(kù)服務(wù)器主機(jī)),user(數(shù)據(jù)庫(kù)用戶(hù)名),pw(數(shù)據(jù)庫(kù)密碼),db(數(shù)據(jù)庫(kù)名),tab(數(shù)據(jù)庫(kù)表名)。
標(biāo)簽: http blog archives raofeng
上傳時(shí)間: 2015-10-25
上傳用戶(hù):894898248
給定n個(gè)整數(shù)a , a , ,an 1 2 組成的序列。序列中元素i a 的符號(hào)定義為: ï î ï í ì - < = > = 1 0 0 0 1 0 sgn( ) i i i i a a a a 符號(hào)平衡問(wèn)題要求給定序列的最長(zhǎng)符號(hào)平衡段的長(zhǎng)度L,即: þ ý ü î í ì = + - = å = £ £ £ max 1| sgn( ) 0 1 j k i i j n k L j i a 。 例如,當(dāng)n=10,相應(yīng)序列為:1,1,-1,-2,0,1,3,-1,2,-1 時(shí),L=9。
上傳時(shí)間: 2015-10-28
上傳用戶(hù):xaijhqx
蟲(chóng)蟲(chóng)下載站版權(quán)所有 京ICP備2021023401號(hào)-1