:介紹 CAN(控制器局域 網(wǎng))總線的特點(diǎn) ,給 出CAN總線系統(tǒng)智能節(jié)點(diǎn)電路原理及 用 C51語(yǔ)言 編寫的開(kāi)發(fā)程序,方便使用者學(xué).-j-和掌握。
上傳時(shí)間: 2017-01-26
上傳用戶:youmo81
遙控解碼通過(guò)電腦串口顯示 /* 晶振:11.0569MHz */ #include <REGX52.h> #define uchar unsigned char uchar data IRcode[4] //定義一個(gè)4字節(jié)的數(shù)組用來(lái)存儲(chǔ)代碼 uchar CodeTemp //編碼字節(jié)緩存變量 uchar i,j,k //延時(shí)用的循環(huán)變量 sbit IRsignal=P3^2 //HS0038接收頭OUT端直接連P3.2(INT0) /**************************延時(shí)0.9ms子程序**********************/ void Delay0_9ms(void) {uchar j,k for(j=18 j>0 j--) for(k=20 k>0 k--) } /***************************延時(shí)1ms子程序**********************/ void Delay1ms(void) {uchar i,j for(i=2 i>0 i--) for(j=230 j>0 j--) }
標(biāo)簽: uchar unsigned 11.0569 include
上傳時(shí)間: 2013-12-12
上傳用戶:Breathe0125
:#include <stdlib.h>#include <stdio.h>#include <time.h> void InsertSort(int a[],int *(k1),int *(k2))//0:直接插入排序{ int i,j int temp *(k1)=0 *(k2)=0 for(i=0 i<149 i++) { temp=a[i+1] *(k2)++ ...
標(biāo)簽: include InsertSort gt lt
上傳時(shí)間: 2014-11-30
上傳用戶:362279997
很經(jīng)典的一個(gè)算法。大家做工程和通信用的著。遺傳算法(Genetic Algorithm)是模擬達(dá)爾文的遺傳選擇和自然淘汰的生物進(jìn)化過(guò)程的計(jì)算模型,是一種通過(guò)模擬自然進(jìn)化過(guò)程搜索最優(yōu)解的方法,它是有美國(guó)Michigan大學(xué)J.Holland教授于1975年首先提出來(lái)的,并出版了頗有影響的專著《Adaptation in Natural and Artificial Systems》,GA這個(gè)名稱才逐漸為人所知,J.Holland教授所提出的GA通常為簡(jiǎn)單遺傳算法(SGA)。
標(biāo)簽: Algorithm Genetic 算法 家
上傳時(shí)間: 2017-02-09
上傳用戶:wkchong
jSearch - turns search Engines into FIND engines - Programming in JAVA Copyright (C) 1999-2009 Hunt Lin This program is free software you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation either version 2 of the License, or(at your option) any later version. This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details. You should have received a copy of the GNU General Public Licensealong with this program if not, write to the Free SoftwareFoundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Also add information on how to contact you by electronic and paper mail.
標(biāo)簽: Programming Copyright jSearch Engines
上傳時(shí)間: 2017-02-10
上傳用戶:qoovoop
學(xué)習(xí)javascript的好資料! 第一講 JavaScript語(yǔ)言概況 第二講 JavaScript基本數(shù)據(jù)結(jié)構(gòu) 第三講 JavaScript程序構(gòu)成 第四講 基于對(duì)象的JavaScript語(yǔ)言 第五講 創(chuàng)建新對(duì)象 第六講 使用內(nèi)部對(duì)象系統(tǒng) 第七講 窗口及輸入輸出 第八講 WEB頁(yè)面信息交互 第九講 實(shí)現(xiàn)更復(fù)雜交互
標(biāo)簽: JavaScript javascript 語(yǔ)言 數(shù)據(jù)結(jié)構(gòu)
上傳時(shí)間: 2014-01-06
上傳用戶:努力努力再努力
EE小站,詳細(xì)介紹,J-LINk GDB Server + Eclipse CDT進(jìn)行ARM程序調(diào)試
標(biāo)簽:
上傳時(shí)間: 2017-02-16
上傳用戶:heart520beat
Instead of finding the longest common subsequence, let us try to determine the length of the LCS. Then tracking back to find the LCS. Consider a1a2…am and b1b2…bn. Case 1: am=bn. The LCS must contain am, we have to find the LCS of a1a2…am-1 and b1b2…bn-1. Case 2: am≠bn. Wehave to find the LCS of a1a2…am-1 and b1b2…bn, and a1a2…am and b b b b1b2…bn-1 Let A = a1 a2 … am and B = b1 b2 … bn Let Li j denote the length of the longest i,g g common subsequence of a1 a2 … ai and b1 b2 … bj. Li,j = Li-1,j-1 + 1 if ai=bj max{ L L } a≠b i-1,j, i,j-1 if ai≠j L0,0 = L0,j = Li,0 = 0 for 1≤i≤m, 1≤j≤n.
標(biāo)簽: the subsequence determine Instead
上傳時(shí)間: 2013-12-17
上傳用戶:evil
數(shù)據(jù)結(jié)構(gòu)與程序設(shè)計(jì)——C++語(yǔ)言描述(影印版)習(xí)題的答案 【作 者】Robert L.Kruse,Alexander J.Ryba
標(biāo)簽: Robert Kruse 數(shù)據(jù)結(jié)構(gòu) 程序設(shè)計(jì)
上傳時(shí)間: 2017-03-04
上傳用戶:lgnf
【問(wèn)題描述】 設(shè)計(jì)一個(gè)利用哈夫曼算法的編碼和譯碼系統(tǒng),重復(fù)地顯示并處理以下項(xiàng)目,直到選擇退出為止。 【基本要求】 (1)初始化:鍵盤輸入字符集大小n、n個(gè)字符和n個(gè)權(quán)值,建立哈夫曼樹(shù); (2)編碼:利用建好的哈夫曼樹(shù)生成哈夫曼編碼; (3)輸出編碼; (4)設(shè)字符集及頻度如下表: 字符:A B C D E F 頻度:4 9 23 2 17 15 字符:G H I J K 頻度:1 2 3 3 4
上傳時(shí)間: 2017-03-07
上傳用戶:qwe1234
蟲(chóng)蟲(chóng)下載站版權(quán)所有 京ICP備2021023401號(hào)-1