C語言進(jìn)階,包含以下的內(nèi)容:C語言進(jìn)階-第一講概述.pdf\C語言進(jìn)階-第二講C語言復(fù)習(xí).pdf\C語言進(jìn)階-第三講編譯匯編調(diào)試.pdf\C語言進(jìn)階-第四講存儲器與指針.pdf\C語言進(jìn)階-第五講 數(shù)據(jù)結(jié)構(gòu)與鏈表.pdf\C語言進(jìn)階-第六講中斷與驅(qū)動.pdf\C語言進(jìn)階-第七講編碼風(fēng)格.pdf\C語言進(jìn)階-第八講編寫安全無錯(cuò)的代碼.pdf\C語言進(jìn)階-lmalloc 第四講代碼.rar\C語言進(jìn)階-ASIX Win link list 第五講代碼.rar
上傳時(shí)間: 2016-01-16
上傳用戶:pinksun9
This m-file simulates MPSK (BPSK,QPSK,8PSK)with theoretical and simulated results using Gray coding. Numerical examples of a satellite link design are shown using QPSK and/or 8PSK when the bit rate(Rb)is greater than the channel bandwidth Wc (Band-limited channel).
標(biāo)簽: theoretical simulates simulated results
上傳時(shí)間: 2016-01-19
上傳用戶:pompey
Atmel AT91SAM7SE256的一些基本驅(qū)動代碼, 包括Link Files, 中斷源配置, SDRAM, USART, Timer等外設(shè)的驅(qū)動代碼。可用于AT91SAM7SE系列處理器。
上傳時(shí)間: 2013-12-20
上傳用戶:zjf3110
Introduction A shared library is a collection of functions that are available for use by one or more applications running on a system. On Windows operating systems, the library is compiled into a dynamic link library (.dll) file. At run-time, the library is loaded into memory and made accessible to all applications.
標(biāo)簽: Introduction collection available functions
上傳時(shí)間: 2014-01-26
上傳用戶:2467478207
This Microsoft(R) Macro Assembler Reference lists all MASM instructions, directives, statements, and operators. It also serves as a quick reference to the Programmer’s WorkBench commands, and the commands for Microsoft utilities such as LINK and LIB. This book documents features of MASM version 6.1, and is part of a complete MASM documentation set.
標(biāo)簽: instructions directives statements Microsoft
上傳時(shí)間: 2016-01-31
上傳用戶:asddsd
非常適合內(nèi)嵌式mp3播放,例如控制臺!注意看壓縮包里readme.doc 詳細(xì)過程,在ARM及MIPS下通過 新建一個(gè) wce application,選擇 a simple windows ce application 在 1.tool->options->directories>include files里包含必要的頭文件 D:\WINCE500\pubilc\directx\SDK\INC D:\WINCE500\pubilc\common\SDK\INC D:\WINCE500\pubilc\common\OAK\INC D:\WINCE500\pubilc\common\DDK\INC 2. >Library files D:\WINCE500\PUBLIC\DIRECTX\SDK\LIB\MIPSII\RETAIL D:\WINCE500\PUBLIC\COMMON\SDK\LIB\MIPSII\RETAIL D:\WINCE500\PUBLIC\COMMON\OAK\LIB\MIPSII\RETAIL 3.可能要在Project->Settings->link的object/library modules 加入 commctrl.lib coredll.lib ole32.lib oleaut32.lib uuid.lib strmiids.lib newres.h play.cpp play.vcw resource.h StdAfx.cpp StdAfx.h 下面為播放源碼 #include "stdafx.h" #include<dshow.h> #include<streams.h> .......其實(shí)編譯時(shí)的 object/library modules 只要看 sourse 文件包含哪個(gè)dll,或lib 就行
標(biāo)簽: application windows readme simple
上傳時(shí)間: 2016-05-05
上傳用戶:ynsnjs
在分析Visual C++和Matlab各自特點(diǎn)的基礎(chǔ)上,提出了混合編程的幾種方法,對VC++利用Matlab數(shù)學(xué)庫和圖形庫進(jìn)行應(yīng)用程序開發(fā),并對在VC++環(huán)境下嵌入mcc命令在Matlab環(huán)境中轉(zhuǎn)變的C++程序代碼作了詳細(xì)介紹。
上傳時(shí)間: 2016-05-09
上傳用戶:lxm
This code is described in "Computational Geometry in C" (Second Edition), Chapter 8. It is not written to be comprehensible without the explanation in that book. Prints out one arm configuration to reach given target. Assumes number of links >= 3. Input: nlinks Number of links L1 L2 ... Ln Link lengths x0 y0 target0 x1 x2 target1
標(biāo)簽: Computational described Geometry Chapter
上傳時(shí)間: 2014-01-25
上傳用戶:yan2267246
看n2實(shí)例 #Create a simulator object set ns [new Simulator] #Define different colors for data flows #$ns color 1 Blue #$ns color 2 Red #Open the nam trace file set nf [open out-1.nam w] $ns namtrace-all $nf set f0 [open out0.tr w] set f1 [open out1.tr w] #Define a finish procedure proc finish {} { global ns nf $ns flush-trace #Close the trace file close $nf #Execute nam on the trace file exit 0 } #Create four nodes set n0 [$ns node] set n1 [$ns node] set n2 [$ns node] set n3 [$ns node] #Create links between the nodes $ns duplex-link $n0 $n2 1Mb 10ms
標(biāo)簽: simulator Simulator different Create
上傳時(shí)間: 2016-07-02
上傳用戶:wfl_yy
package query public class LinkQuery { private Node front private Node vear public LinkQuery() { this.front=null this.vear=null } public void add(int i) { Node newNode=new Node(i) if(vear==null && front==null) { vear=newNode front=newNode return } vear.next=newNode vear=newNode } public int remove() { if(this.front==null) { System.out.println("隊(duì)是空的,無法取") return -1 } int temp=this.front.data this.front=this.front.next if(this.front==null) { this.vear=null }
標(biāo)簽: private public Node LinkQuery
上傳時(shí)間: 2016-07-08
上傳用戶:天誠24
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1