文件名 :Calender.c // 描述 :日歷時鐘模塊,用于不帶時鐘芯片的系統(tǒng) // 語言 :C 作者 :Jean J. Labrosse 日期 :2002-05-17 // 說明 :原來的程序用于
上傳時間: 2015-09-16
上傳用戶:zhangliming420
subtitlesync這是我寫的一個小程序, 用于將下載的電影的字幕同步,因?yàn)楹芏鄷r候字幕跟聲音有不同步現(xiàn)象.現(xiàn)在只能處理SRT.格式的字幕. 開發(fā)平臺是eclipse,使用方法是運(yùn)行Main.java
標(biāo)簽: subtitlesync eclipse Main 字幕
上傳時間: 2014-01-17
上傳用戶:cursor
二維FDTD程序,采用PML邊界s 用pml和mur分別計(jì)算j=1處的Hz(i,1).計(jì)算空間擴(kuò)大到400*400,不加邊界,運(yùn)行相同的時間步
上傳時間: 2013-12-22
上傳用戶:talenthn
palm編成,這種書很少,有興趣看看 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
上傳時間: 2013-12-10
上傳用戶:litianchu
考察例1 4 - 8中的1 4個點(diǎn)。A中的最近點(diǎn)對為(b,h),其距離約為0 . 3 1 6。B中最近點(diǎn)對為 (f, j),其距離為0 . 3,因此= 0 . 3。當(dāng)考察 是否存在第三類點(diǎn)時,除d, g, i, l, m 以外 的點(diǎn)均被淘汰,因?yàn)樗鼈兙喾指罹€x= 1的 距離≥ 。RA ={d, i, m},RB= {g, l},由 于d 和m 的比較區(qū)中沒有點(diǎn),只需考察i 即可。i 的比較區(qū)中僅含點(diǎn)l。計(jì)算i 和l 的距離,發(fā)現(xiàn)它小于,因此(i, l) 是最近
標(biāo)簽:
上傳時間: 2013-12-03
上傳用戶: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
上傳時間: 2013-12-18
上傳用戶:lanhuaying
本程序演示for-for的二重循環(huán)結(jié)構(gòu)。外層for語句的循環(huán)變量是i,控制總共顯示多少行 內(nèi)層for語句 的循環(huán)變量是j,控制每行顯示多少字符。
標(biāo)簽: for-for for 程序 循環(huán)結(jié)構(gòu)
上傳時間: 2013-12-23
上傳用戶:gundan
本教程舉例說明了如何使用 ADO 編程模型對數(shù)據(jù)源進(jìn)行查詢及更新。教程首先講述了完成此項(xiàng)任務(wù)的必要步驟,然后分別通過 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)行更為具體的說明。
上傳時間: 2015-10-13
上傳用戶:330402686
經(jīng)典C語言程序設(shè)計(jì)100例1-10 如【程序1】 題目:有1、2、3、4個數(shù)字,能組成多少個互不相同且無重復(fù)數(shù)字的三位數(shù)?都是多少? 1.程序分析:可填在百位、十位、個位的數(shù)字都是1、2、3、4。組成所有的排列后再去 掉不滿足條件的排列。 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語言 程序設(shè)計(jì)
上傳時間: 2013-12-14
上傳用戶:hfmm633
We propose a simple and effective method for detecting view- and scale-independent ridge-valley lines defined via first- and secondorder curvature derivatives on shapes approximated by dense triangle meshes.
標(biāo)簽: scale-independent ridge-valley and effective
上傳時間: 2014-01-08
上傳用戶:sammi
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1