該C程序基于MSP430,在圖形液晶上顯示年月日星期和時間 程序功能:該程序是用F449來控制對128X64點陣的片選CS1,CS2,數據線D0-D7,讀寫信號等的操作? // 來對點陣的操作,具體內容如“利爾達,TEL:0571 -88800000。具體詳瀏覽程序描述 // 硬件連接:必須連接F449邊上的p3.0-P3.7,P4.0,P4.1,P2.6,P2.7口上的短接器。另外,可以通過3296電位器R20來調節LCD灰度。
上傳時間: 2013-12-19
上傳用戶:璇珠官人
結合單片機和M a t l a b 兩者的優點,基于事件驅動的中斷通信機制,提出一種Matlab 環境下PC 機與 單片機實時串行通信及數據處理的方法;完成單片機數據采集系統與PC 機的RS-232/RS-485 串行通 信及其通信數據的分析處理、文件存儲、F I R 濾波及圖形顯示;簡化系統開發流程,提高開發效率。 該方法已成功應用于一個P I C 1 6 F 8 7 6 單片機應用系統實例之中
標簽: 單片機
上傳時間: 2014-01-19
上傳用戶:yzy6007
DeviceListener is an Objective-C example which demonstrates how to use the DiscRecording framework to listen for device plug and unplug events as well as media insertion events. Requirements: Mac OS X 10.2 and later Keywords: DiscRecording
標簽: DeviceListener DiscRecording demonstrates Objective-C
上傳時間: 2016-01-14
上傳用戶:日光微瀾
『數據結構-C++語言描述』圍繞多數據集類-表、樹、集合、圖和字典來組織數據結構的學習。本書包括數據結構基本內容和面向對象程序設計方法兩部分,給出了許多完整程序或程序段例子,并引入了描述算法負責度的大O方法。
上傳時間: 2014-01-13
上傳用戶:cylnpy
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.
標簽: Programming Windows Visual Shell
上傳時間: 2014-11-27
上傳用戶:zhangjinzj
偽色彩基于灰度,逆灰度,黃色,熱金屬,彩虹等的編碼方案,c#寫的,很難找的。
上傳時間: 2016-01-29
上傳用戶:王者A
一杯沸水冷卻,圓柱體模型,底面半徑0.05m,高0.1m,周圍溫度20度,初始水溫100度 方程是四維輸運方程(常數a^2=k/(c*p),k是熱傳導系數0.6006焦/(米*秒*度)) 初始條件:t=0時水等于100度 邊界條件:1.上下壁都是自由冷卻,第三類邊界條件,周圍溫度保持在20度(H=k/h,h取1) 2.杯壁絕熱,第二類邊界條件 圖形顯示格式,取過圓柱軸的截面溫度變化將其做成動畫.
標簽: 冷卻
上傳時間: 2014-01-21
上傳用戶:xlcky
Floyd-Warshall算法描述 1)適用范圍: a)APSP(All Pairs Shortest Paths) b)稠密圖效果最佳 c)邊權可正可負 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)算法結束:dis即為所有點對的最短路徑矩陣 3)算法小結:此算法簡單有效,由于三重循環結構緊湊,對于稠密圖,效率要高于執行|V|次Dijkstra算法。時間復雜度O(n^3)。 考慮下列變形:如(I,j)∈E則dis[I,j]初始為1,else初始為0,這樣的Floyd算法最后的最短路徑矩陣即成為一個判斷I,j是否有通路的矩陣。更簡單的,我們可以把dis設成boolean類型,則每次可以用“dis[I,j]:=dis[I,j]or(dis[I,k]and dis[k,j])”來代替算法描述中的藍色部分,可以更直觀地得到I,j的連通情況。
標簽: Floyd-Warshall Shortest Pairs Paths
上傳時間: 2013-12-01
上傳用戶:dyctj
The market for miniature computer programming is exploding. C++ Footprint and Performance Optimization supplies programmers the knowledge they need to write code for the increasing number of hand-held devices, wearable computers, and intelligent appliances. This book gives readers valuable knowledge and programming techniques that are not currently part of traditional programming training. In the world of C++ programming, all other things being equal, programs that are smaller and faster are better. C++ Footprint and Performance Optimization contains case studies and sample code to give readers concrete examples and proven solutions to problems that don t have cut and paste solutions.
標簽: Performance programming Optimizati Footprint
上傳時間: 2013-12-09
上傳用戶:wfl_yy
簡單的floyd運用 第一行輸入一個整數C。C是測試的情況(0< C <=30).第二行一個正整數N( 0< N <=100),表示道路的總數.緊接N行,每一行包含兩個字符串, Si,,Ti,和一個整數Di,代表從Si到Ti的距離(0<= Di <=150)。最后一行有兩個字符串,S 和 T,你得找出從S 到 T的最短的距離。地名是不超過120個小寫字符的串(從‘a’到‘z’)。假設這里最多有100條直接連通兩個地方的路。 Output 輸出包含C行,每一行對一種測試情況。對每一種測試情況,輸出包含一個整數,假如S 到 T存在一條最短的路,輸出從S到T的最短距離,否則輸出“-1”. Sample Input 2 2 jiuzhouriver liuchi 89 liuchi liyuan 100 liuchi jiuzhouriver 3 youyongchi fengyuan 100 qinshi meiyuan 100 chaochang supermarkt 100 meiyuan youyongchi Sample Output 89 -1
上傳時間: 2016-03-10
上傳用戶:wyc199288