迄今為止,本書已介紹了可在Microsoft Wi n d o w s操作系統中使用的全部網絡A P I函數。 利用這些函數,我們的應用程序可通過網絡,建立與其他程序的通信聯系。在那些討論中, 我們在很大程度上將重點放在七層O S I模型的應用層和表示層上面
標簽:
上傳時間: 2015-07-08
上傳用戶:royzhangsz
上下文無關文法(Context-Free Grammar, CFG)是一個4元組G=(V, T, S, P),其中,V和T是不相交的有限集,S∈V,P是一組有限的產生式規則集,形如A→α,其中A∈V,且α∈(V∪T)*。V的元素稱為非終結符,T的元素稱為終結符,S是一個特殊的非終結符,稱為文法開始符。 設G=(V, T, S, P)是一個CFG,則G產生的語言是所有可由G產生的字符串組成的集合,即L(G)={x∈T* | Sx}。一個語言L是上下文無關語言(Context-Free Language, CFL),當且僅當存在一個CFG G,使得L=L(G)。 *⇒ 例如,設文法G:S→AB A→aA|a B→bB|b 則L(G)={a^nb^m | n,m>=1} 其中非終結符都是大寫字母,開始符都是S,終結符都是小寫字母。
標簽: Context-Free Grammar CFG
上傳時間: 2013-12-10
上傳用戶:gaojiao1999
struts的詳細說明,是struts的經典經驗集合,對于做web開發的技術人員來說恨合適d o dio 哦!感覺寫的恨不錯就發上來了!
標簽: struts
上傳時間: 2016-01-01
上傳用戶:懶龍1988
We have a group of N items (represented by integers from 1 to N), and we know that there is some total order defined for these items. You may assume that no two elements will be equal (for all a, b: a<b or b<a). However, it is expensive to compare two items. Your task is to make a number of comparisons, and then output the sorted order. The cost of determining if a < b is given by the bth integer of element a of costs (space delimited), which is the same as the ath integer of element b. Naturally, you will be judged on the total cost of the comparisons you make before outputting the sorted order. If your order is incorrect, you will receive a 0. Otherwise, your score will be opt/cost, where opt is the best cost anyone has achieved and cost is the total cost of the comparisons you make (so your score for a test case will be between 0 and 1). Your score for the problem will simply be the sum of your scores for the individual test cases.
標簽: represented integers group items
上傳時間: 2016-01-17
上傳用戶:jeffery
The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa. For example, >> project.name = MyProject >> project.id = 1234 >> project.param.a = 3.1415 >> project.param.b = 42 becomes with str=xml_format(project, off ) "<project> <name>MyProject</name> <id>1234</id> <param> <a>3.1415</a> <b>42</b> </param> </project>" On the other hand, if an XML string XStr is given, this can be converted easily to a MATLAB data type or structure V with the command V=xml_parse(XStr).
標簽: converts Toolbox complex logical
上傳時間: 2016-02-12
上傳用戶:a673761058
漢諾塔!!! Simulate the movement of the Towers of Hanoi puzzle Bonus is possible for using animation eg. if n = 2 A→B A→C B→C if n = 3 A→C A→B C→B A→C B→A B→C A→C
標簽: the animation Simulate movement
上傳時間: 2017-02-11
上傳用戶:waizhang
本代碼為編碼開關代碼,編碼開關也就是數字音響中的 360度旋轉的數字音量以及顯示器上用的(單鍵飛梭開 關)等類似鼠標滾輪的手動計數輸入設備。 我使用的編碼開關為5個引腳的,其中2個引腳為按下 轉輪開關(也就相當于鼠標中鍵)。另外3個引腳用來 檢測旋轉方向以及旋轉步數的檢測端。引腳分別為a,b,c b接地a,c分別接到P2.0和P2.1口并分別接兩個10K上拉 電阻,并且a,c需要分別對地接一個104的電容,否則 因為編碼開關的觸點抖動會引起輕微誤動作。本程序不 使用定時器,不占用中斷,不使用延時代碼,并對每個 細分步數進行判斷,避免一切誤動作,性能超級穩定。 我使用的編碼器是APLS的EC11B可以參照附件的時序圖 編碼器控制流水燈最能說明問題,下面是以一段流水 燈來演示。
上傳時間: 2017-07-03
上傳用戶:gaojiao1999
#include "iostream" using namespace std; class Matrix { private: double** A; //矩陣A double *b; //向量b public: int size; Matrix(int ); ~Matrix(); friend double* Dooli(Matrix& ); void Input(); void Disp(); }; Matrix::Matrix(int x) { size=x; //為向量b分配空間并初始化為0 b=new double [x]; for(int j=0;j<x;j++) b[j]=0; //為向量A分配空間并初始化為0 A=new double* [x]; for(int i=0;i<x;i++) A[i]=new double [x]; for(int m=0;m<x;m++) for(int n=0;n<x;n++) A[m][n]=0; } Matrix::~Matrix() { cout<<"正在析構中~~~~"<<endl; delete b; for(int i=0;i<size;i++) delete A[i]; delete A; } void Matrix::Disp() { for(int i=0;i<size;i++) { for(int j=0;j<size;j++) cout<<A[i][j]<<" "; cout<<endl; } } void Matrix::Input() { cout<<"請輸入A:"<<endl; for(int i=0;i<size;i++) for(int j=0;j<size;j++){ cout<<"第"<<i+1<<"行"<<"第"<<j+1<<"列:"<<endl; cin>>A[i][j]; } cout<<"請輸入b:"<<endl; for(int j=0;j<size;j++){ cout<<"第"<<j+1<<"個:"<<endl; cin>>b[j]; } } double* Dooli(Matrix& A) { double *Xn=new double [A.size]; Matrix L(A.size),U(A.size); //分別求得U,L的第一行與第一列 for(int i=0;i<A.size;i++) U.A[0][i]=A.A[0][i]; for(int j=1;j<A.size;j++) L.A[j][0]=A.A[j][0]/U.A[0][0]; //分別求得U,L的第r行,第r列 double temp1=0,temp2=0; for(int r=1;r<A.size;r++){ //U for(int i=r;i<A.size;i++){ for(int k=0;k<r-1;k++) temp1=temp1+L.A[r][k]*U.A[k][i]; U.A[r][i]=A.A[r][i]-temp1; } //L for(int i=r+1;i<A.size;i++){ for(int k=0;k<r-1;k++) temp2=temp2+L.A[i][k]*U.A[k][r]; L.A[i][r]=(A.A[i][r]-temp2)/U.A[r][r]; } } cout<<"計算U得:"<<endl; U.Disp(); cout<<"計算L的:"<<endl; L.Disp(); double *Y=new double [A.size]; Y[0]=A.b[0]; for(int i=1;i<A.size;i++ ){ double temp3=0; for(int k=0;k<i-1;k++) temp3=temp3+L.A[i][k]*Y[k]; Y[i]=A.b[i]-temp3; } Xn[A.size-1]=Y[A.size-1]/U.A[A.size-1][A.size-1]; for(int i=A.size-1;i>=0;i--){ double temp4=0; for(int k=i+1;k<A.size;k++) temp4=temp4+U.A[i][k]*Xn[k]; Xn[i]=(Y[i]-temp4)/U.A[i][i]; } return Xn; } int main() { Matrix B(4); B.Input(); double *X; X=Dooli(B); cout<<"~~~~解得:"<<endl; for(int i=0;i<B.size;i++) cout<<"X["<<i<<"]:"<<X[i]<<" "; cout<<endl<<"呵呵呵呵呵"; return 0; }
標簽: 道理特分解法
上傳時間: 2018-05-20
上傳用戶:Aa123456789
AR0231AT7C00XUEA0-DRBR(RGB濾光)安森美半導體推出采用突破性減少LED閃爍 (LFM)技術的新的230萬像素CMOS圖像傳感器樣品AR0231AT,為汽車先進駕駛輔助系統(ADAS)應用確立了一個新基準。新器件能捕獲1080p高動態范圍(HDR)視頻,還具備支持汽車安全完整性等級B(ASIL B)的特性。LFM技術(專利申請中)消除交通信號燈和汽車LED照明的高頻LED閃爍,令交通信號閱讀算法能于所有光照條件下工作。AR0231AT具有1/2.7英寸(6.82 mm)光學格式和1928(水平) x 1208(垂直)有源像素陣列。它采用最新的3.0微米背照式(BSI)像素及安森美半導體的DR-Pix?技術,提供雙轉換增益以在所有光照條件下提升性能。它以線性、HDR或LFM模式捕獲圖像,并提供模式間的幀到幀情境切換。 AR0231AT提供達4重曝光的HDR,以出色的噪聲性能捕獲超過120dB的動態范圍。AR0231AT能同步支持多個攝相機,以易于在汽車應用中實現多個傳感器節點,和通過一個簡單的雙線串行接口實現用戶可編程性。它還有多個數據接口,包括MIPI(移動產業處理器接口)、并行和HiSPi(高速串行像素接口)。其它關鍵特性還包括可選自動化或用戶控制的黑電平控制,支持擴頻時鐘輸入和提供多色濾波陣列選擇。封裝和現狀:AR0231AT采用11 mm x 10 mm iBGA-121封裝,現提供工程樣品。工作溫度范圍為-40℃至105℃(環境溫度),將完全通過AEC-Q100認證。
標簽: 圖像傳感器
上傳時間: 2022-06-27
上傳用戶:XuVshu
eeworm.com VIP專區 單片機源碼系列 34資源包含以下內容:1. TLC5615 c程序.rar2. 基于STC單片機的智能燈控系統設計.zip3. 認識Keil C.ppt4. Keil uVision2入門教程.pdf5. 單片機的基本模塊在我們設計單片機電子電路時.docx6. 電子密碼鎖畢業設計.rar7. C語言結構體詳解.docx8. 4×4矩陣鍵盤的工作原理與編程.doc9. keil4與proteus聯調方法.rar10. 51單片機AD0809電路設計程序+原理圖.pdf11. Keil uVision4漢化軟件.rar12. KeivuV2視頻教程.rar13. 四位共陰和共陽數碼管的引腳介紹及檢測方法概括.doc14. Keil3軟件下載.rar15. msp430USB仿真器驅動.zip16. STC-ISP(STC官方燒錄工具).rar17. DS1302 18B20程序第一版.rar18. 8051單片機實踐與應用.pdf19. MSP430原理與應用教程課件.pdf20. 簡明單片機教程.pdf21. MSP430外圍模塊功能簡介.pdf22. 嵌入式系統與單片機應用.pdf23. 輕松進入STM32+Cortex-M3世界.rar24. 簡易智能電動車.ppt25. STM32庫函數助手.rar26. STC單片機ISP-V4.80.rar27. 單片機C語言程序設計實訓100例——基于8051+Proteus仿真.pdf28. Keil uVision4漢化軟件.rar29. Keil中文版.rar30. 機器人硬件系統.ppt31. 機器人軟件設計.ppt32. 單片機知識匯總.ppt33. STM32系列命名規則.doc34. 51單片機C語言編程規范.ppt35. pic16f87x快速學習.rar36. 德州儀器Piccolo系列32位單片機選型.zip37. 串口IIC 1-WIRE課件.ppt38. CAN入門書.pdf39. 555定時器的引用.ppt40. MC9RS08Lxx系列 8位微控制器簡介(飛思卡爾).rar41. 51定時計數器.ppt42. L298驅動步進電機.doc43. smc1602a數據資料.pdf44. STC11F-10Fxx.pdf45. LCD1602的4、8線驅動.doc46. HC-SR04超聲波測距資料.rar47. 譚浩強c語言.exe48. 單片機C語言(for)延時計算.doc49. 學習開發板原理圖.pdf50. 單片機課件.rar51. ATmega128_cn.pdf52. 51系列單片機設計實例.pdf53. 程序下載(燒錄)說明.pdf54. 定時計數器.ppt55. 《51單片機C語言快速上手》.pdf56. 2012TI浙江省競賽試題.zip57. 非常好的C51教程.pdf58. 聲音引導系統(完整版).doc59. STM8S和STM32選型手冊2009.pdf60. 單片機完整最新課件.ppt61. CT107D測試程序(含超聲測距).rar62. 單片機系統多串行口設計技術研究.pdf63. 高質量C++/C編程指南.doc64. avr單片機的應用.doc65. 利用VB編程實現實時數據曲線繪制.pdf66. AN4347-應由S08AC和S08FL系列向S08PT系列轉換(飛思卡爾).rar67. 51單片機C語言編程入門(中科大).pdf68. 5V_8位S08P微控制器系列產品介紹(飛思卡爾).rar69. H8P16 User Manual_V1.02_all.pdf70. 單片機C語言程序設計實訓100例——基于8051+Proteus仿真.pdf71. 2012TI杯陜西賽題D題題目--聲音定位系統.doc72. Altium_Designer_Winter_09_教程_(PDF版).pdf73. 8051單片機c語言控制與應用.rar74. PIC單片機—基礎篇.pdf75. 2009年全國大學生電子設計競賽TI優秀作品精選集.pdf76. 行列反轉掃描法在矩陣鍵盤中的應用及編程思想.doc77. 51單片機__12864液晶顯示并口和串口連接程序.doc78. PIC單片機—提高篇.pdf79. 自制at89s52_ISP下載線.doc80. 用KD-012創意制作的節日循環彩燈電路.doc81. 2012TI杯電子設計12省試題-聲音定位系統.doc82. keil破解——解決下載問題.doc83. 便攜式脈搏測試儀(高職高專題).doc84. 各種單片機用到的或集成芯片的中文資料庫.rar85. 三軸加速度傳感器MMA7260.pdf86. 51最小系統原理圖.pdf87. uCOS_II_2.52源碼中文譯注.rar88. TX-1C型單片機實驗板原理圖.pdf89. PLC+單片機大合集.rar90. μCOS-Ⅱ Mega128 源代碼.rar91. MSP430系列單片機實用C語言(人民郵電).pdf92. 基于ATmega48單片機的恒速風扇控制器的設計.doc93. STC89C51RC.pdf94. MSP430單片機C語言.pdf95. 數字式溫濕度計課設.doc96. 51單片機PID算法程序的位置式PID控制算法.pdf97. MSP430_C語言例程注釋詳.pdf98. CAM130模塊原理圖.pdf99. 51單片機經典入門教程(非常棒的教程).pdf100. 電子教材-MSP430單片機電子教程.pdf
上傳時間: 2013-07-17
上傳用戶:eeworm