搜索资源列表
-
0下载:
堆和栈的区别
一、预备知识—程序的内存分配
一个由c/C++编译的程序占用的内存分为以下几个部分
1、栈区(stack)— 由编译器自动分配释放 ,存放函数的参数值,局部变量的值等。其操作方式类似于数据结构中的栈。
2、堆区(heap) — 一般由程序员分配释放, 若程序员不释放,程序结束时可能由OS回收 。注意它与数据结构中的堆是两回事,分配方式倒是类似于链表,呵呵。
3、全局区(静态区)(static)—,全局变量和静态变量的存储是放在一块的,初始化的全局变量和静态变量在
-
-
0下载:
数据结构与算法综合资料库.CHM,学习数据结构与算法很好的参考资料-data structures and algorithms integrated database. CHM, learning algorithm and data structure good reference
-
-
0下载:
顺序表的应用
(1) 已知长度为n的线性表A采用顺序存储结构,请写一时间复杂度为0(n)、空间复杂度为0(1)的算法,该算法删除线性表中所有值为item的数据元素。要求:线性表元素个数n很大,而值为item的数据元素个数很少,要求移动元素个数尽量少;删除后的数组元素与原数组元素不必保持顺序一致。
(2)编写一个函数将一个顺序表A(有n个元素,且任何元素均不为0)分拆成两个顺序表,使A中大于0的元素存放在B中,小于0的元素存放在C中。
(3)假设一个算术表达式中包含圆括号,方括号
-
-
0下载:
在论述R树索引技术的相关概念、数据结构、算法描述及性能分析的基础上,提出了一种改进的R*树空间索引结构-R-tree Index in the paper related to the concept of technology, data structure, algorithm descr iption and performance analysis, based on an improved space for the R* Tree Index Structure
-
-
0下载:
手机SIM卡应用与安全缺陷分析 SIM卡详细介绍
内容简介:这个文件是很多人梦寐以求的资料,我收集了许多网站资料整理合成的。介绍的非常详细!有SIM卡的引脚定义图、内部结构、…… -Mobile phone SIM card applications and security defect analysis SIM card details Descr iption: This document is a dream of many people, I collected a lot of
-
-
0下载:
TLC548和TLC549是以8位开关电容逐次逼近A/D转换器为基础而构造的CMOS A/D转换器。它们设
计成能通过3态数据输出和模拟输入与微处理器或外围设备串行接口。TLC548和TLC549仅用输入/输出时
钟(I/O CLOCK) 和芯片选择(CS) 输入作数据控制。TLC548的最高I/O CLOCK输入频率为2.048MHz,
而TLC549的I/O CLOCK输入频率最高可达1.1MHz。 有关与大多数通用微处理器接口的详细资料已由工厂
准备好,可供使用。-TLC5
-
-
0下载:
MapServer是一款功能强大的开源WebGIS平台。本文介绍了MapServer的技术特点和内部组成,对其系统结构和
功能模块进行了详细的分析。-Abstract:MapServer is a sort of open source W ebGIS platform with powerful functions.This article introduces technological
characteristics an d interior structure of MapSe
-
-
0下载:
数据库(Database)是按照数据结构来组织、存储和管理数据的仓库,它产生于距今五十年前,随着信息技术和市场的发展,特别是二十世纪九十年代以后,数据管理不再仅仅是存储和管理数据,而转变成用户所需要的各种数据管理的方式。数据库有很多种类型,从最简单的存储有各种数据的表格到能够进行海量数据存储的大型数据库系统都在各个方面得到了广泛的应用。-Database (Database) is in accordance with the data structure to organize, store
-
-
0下载:
Three dimensional force sensor, analyzes its structure, principle and mathematical model between voltage and strike force, and then use the sensor to detect three-dimensional force size, the hardware part mainly with 8051 single-chip microcomputer to
-
-
0下载:
环形缓冲区的实现原理,在通信程序中,经常使用环形缓冲区作为数据结构来存放通信中发送和接收的数据。环形缓冲区是一个先进先出的循环缓冲区,可以向通信程序提供对缓冲区的互斥访问-The principle of the ring buffer, in the communication process, often use ring buffers to store the data as a data structure to send and receive communications. FI
-
-
0下载:
Mac层帧结构。介质访问控制层(MAC)帧被称为MAC协议数据单元(MPDU),其长度不超过127个字节。它具有四种不同的帧形式,即信标帧、数据帧、确认帧和命令帧。-Mac layer frame structure. MAC layer (MAC) frame is called MAC Protocol Data Unit (MPDU), whose length does not exceed 127 bytes. It has four different forms of frames
-