搜索结果
找到约 190 项符合
stack 的查询结果
按分类筛选
- 全部分类
- 单片机开发 (12)
- Linux/Unix编程 (11)
- 数据结构 (9)
- 网络 (9)
- 驱动编程 (9)
- 其他书籍 (8)
- 嵌入式/单片机编程 (8)
- 其他 (8)
- Internet/网络编程 (7)
- 其他嵌入式/单片机内容 (7)
- DSP编程 (7)
- 技术资料 (7)
- 单片机编程 (6)
- 通讯/手机编程 (6)
- 微处理器开发 (4)
- 软件设计/软件工程 (4)
- 嵌入式Linux (4)
- uCOS (4)
- VIP专区 (4)
- Windows Mobile (3)
- Java书籍 (3)
- VC书籍 (3)
- VHDL/FPGA/Verilog (3)
- 无线通信 (2)
- 书籍源码 (2)
- 编译器/解释器 (2)
- 游戏 (2)
- 并行计算 (2)
- 文章/文档 (2)
- 汇编语言 (2)
- 邮电通讯系统 (2)
- 编辑器/阅读器 (2)
- 数学计算 (2)
- 电子书籍 (2)
- 源码 (2)
- 资料/手册 (1)
- 学术论文 (1)
- 数据库系统 (1)
- 通信网络 (1)
- Delphi/CppBuilder (1)
- 通讯编程文档 (1)
- 操作系统开发 (1)
- 技术管理 (1)
- 语音压缩 (1)
- 行业发展研究 (1)
- VxWorks (1)
- J2ME (1)
- STL (1)
- 传真(Fax)编程 (1)
- 系统设计方案 (1)
- JavaScript (1)
- Java编程 (1)
- 源码/资料 (1)
- 接口技术 (1)
- 开发工具 (1)
编译器/解释器 简单介绍一下
简单介绍一下,整个工程分为5个文件:Main.c ----- 程序的入口点,其实很简单,就是调用两个函数。Global.h ----- 定义了一些全局变量及宏Parse.h ----- 语法分析器的主要算法Prece.h ----- 定义和实现了一些关于优先级的操作Stack.h ----- 定义和实现了一个栈及其操作编译的时候只要用TC2.0或者WinTC打开Main.c文件进行编 ...
Linux/Unix编程 linux下的usb开发
linux下的usb开发,采用phlip的isp1362,此为它的stack
驱动编程 Addfilter is a command-line application which adds and removes filter drivers for a given drive or v
Addfilter is a command-line application which adds and removes filter drivers for a given drive or volume. It is intended to demonstrate how to insert a filter driver into the driver stack of a device. The sample illustrates how to do this by using the SetupDi APIs. The sample works on both x86 and ...
驱动编程 FPFilter is a sample disk filter driver that demonstrates how a disk failure prediction filter drive
FPFilter is a sample disk filter driver that demonstrates how a disk failure prediction filter driver could be implemented. A failure prediction filter driver can predict when a disk may fail and notify the disk driver stack of this condition.
驱动编程 The flpydisk sample is a floppy driver that resides in the directory \NtddkSrcStorageFdcFlpydsk. It
The flpydisk sample is a floppy driver that resides in the directory \\Ntddk\Src\Storage\Fdc\Flpydsk. It is similar to a class driver in that it sits a level above the floppy disk controller in the driver stack, and brokers communication between the application level and the low-level driver. The fl ...
单片机开发 This version of the code is compatible only with the AT89C2051 due to the location of the data buf
This version of the code is compatible only with the AT89C2051 due to the
location of the data buffer and stack in RAM. The code may be modified to
work with the AT89C1051 by relocating or resizing the buffer and stack to
fit into the smaller amount of RAM available in the AT89C1051.
编译器/解释器 The Small C compiler translates a subset of the C language into assembly language. It runs under P
The Small C compiler translates a subset of the C language into
assembly language. It runs under PC/MS-DOS 2.1 and later. Small
C is compatible with the Microsoft and Small Mac assemblers.
Small C takes full advantage of the ability of these assemblers
to generate relocatable object code, to mai ...
Delphi/CppBuilder DELPHI basicCtrl+NUM 直接将光标跳到NUM处
DELPHI basicCtrl+NUM 直接将光标跳到NUM处,NUM是用Ctrl+Shift+NUM设置的标号。
NUM不能用小键盘。
Ctrl+Home 将光标移至文件头。
Ctrl+End 将光标移至文件尾。
Ctrl+B Buffer List窗口。
Ctrl+I 同Tab键。
Ctrl+M 同Enter键。
Ctrl+N 同Enter键,但光标位置保持不变。
Ctrl+T 删除光标右边的一个单词。
Ctrl+Y 删除光标所 ...
Linux/Unix编程 LibTorrent is a BitTorrent library written in C++ for *nix, with a focus on high performance and goo
LibTorrent is a BitTorrent library written in C++ for *nix, with a focus on high performance and good code. The library differentiates itself from other implementations by transfering directly from file pages to the network stack. On high-bandwidth connections it is able to seed at 3 times the speed ...
并行计算 说明: 此计算机可以计算同时超过多个操作项的什. 例如: y = 3 + 64 * (2 + 3^5) + sinPI 的值
说明: 此计算机可以计算同时超过多个操作项的什. 例如: y = 3 + 64 * (2 + 3^5) + sinPI 的值, 用括号区分优先级,如果有大量很长的算式需要计算,可以试一下这个计算器. 开发语言: C#语言,用Stack原理实现