CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 文档资料 搜索资源 - heap

搜索资源列表

  1. differenct

    0下载:
  2. 堆和栈的区别 一、预备知识—程序的内存分配 一个由c/C++编译的程序占用的内存分为以下几个部分 1、栈区(stack)— 由编译器自动分配释放 ,存放函数的参数值,局部变量的值等。其操作方式类似于数据结构中的栈。 2、堆区(heap) — 一般由程序员分配释放, 若程序员不释放,程序结束时可能由OS回收 。注意它与数据结构中的堆是两回事,分配方式倒是类似于链表,呵呵。 3、全局区(静态区)(static)—,全局变量和静态变量的存储是放在一块的,初始化的全局变量和静态变量在
  3. 所属分类:技术管理

    • 发布日期:2008-10-13
    • 文件大小:14949
    • 提供者:stevephen
  1. 06Heapsort

    0下载:
  2. heapsort,堆排序,很少有人介绍,可是却是一种基本的算法-heapsort, heap sort, there are very few people on, but they are a basic algorithm
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:340757
    • 提供者:billkim
  1. heap

    0下载:
  2. 堆与栈有什么区别,预备知识—程序的内存分配-程序的内存分配
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:3030
    • 提供者:draw
  1. umdhtools

    0下载:
  2. 微软发布的跟踪内存溢出的工具集UMDH (user-mode dump heap 的缩写).
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:441933
    • 提供者:stone
  1. 111

    0下载:
  2. 第一章、Windows下堆栈溢出入门 第二章、Windows下ShellCode编写初步 第三章、后门的编写和ShellCode的提取 第四章 Windows下堆溢出利用编程 第五章 ShellCode变形编码大法 第六章 ShellCode编写高级技术 第七章、漏洞的发现、分析和利用-The first chapter, Windows stack overflow entry under Chapter II, Windows under Chapter III of
  3. 所属分类:software engineering

    • 发布日期:2017-05-25
    • 文件大小:8246666
    • 提供者:
  1. Sort

    0下载:
  2. 1. 直接插入排序 2. 折半插入排序 3. 希尔排序 4. 起泡排序 5. 快速排序 6. 选择排序 7. 堆排序-1. Direct insertion sort 2. Binary insertion sort 3. Shell sort 4. Bubble sort 5. Quicksort 6. Sorted by 7. Heap Sort
  3. 所属分类:Software Testing

    • 发布日期:2017-03-30
    • 文件大小:2732
    • 提供者:sunnylaisy
  1. ch14

    0下载:
  2. 一、教学目的: 要求掌握C++对内存的管理方法,能灵活使用new和delete运算符对堆进行操作。理解和正确使用拷贝构造函数,理解临时对象和无名对象的概念。 二、教学重点: 通过大量的例程的分析,使学生正确掌握堆的分配释放操作,拷贝构造函数的使用。 三、教学难点: 深拷贝和浅拷贝的区别,临时对象和无名对象的理解。-I. Teaching Purpose: To request grasp C++ Memory management methods, the flexib
  3. 所属分类:software engineering

    • 发布日期:2017-05-02
    • 文件大小:77375
    • 提供者:新奇
  1. thesummeryofjava

    0下载:
  2. java堆与栈 - 一些java中常见的基础问题的总结-java heap and the stack- some java basic common issues summary
  3. 所属分类:IT Hero

    • 发布日期:2017-04-15
    • 文件大小:6465
    • 提供者:莫昌贤
  1. ch08

    0下载:
  2. 堆積(heap)是樹結構的第三種型態。堆積是一棵二元樹,其左右子樹節點的值均較其父母節點的值小。堆積的根節點值保證是該樹最大值。這中堆績稱為最大堆績。堆積的子樹可擺在左邊當左子樹,也可擺在右邊當右子樹,因此左右子樹俱有相同的性質。-Heap (heap) are the third type of tree structure. Accumulation is a binary tree, its about the value of subtree nodes than those of th
  3. 所属分类:Project Design

    • 发布日期:2017-04-29
    • 文件大小:63045
    • 提供者:李南
  1. ch

    0下载:
  2. 堆积(heap)是树结构的第三种型态。堆积是一棵二元树,其左右子树节点的值均较其父母节点的值小。堆积的根节点值保证是该树最大值。这中堆绩称为最大堆绩。堆积的子树可摆在左边当左子树,也可摆在右边当右子树,因此左右子树俱有相同的性质。-Heap (heap) are the third type of tree structure. Accumulation is a binary tree, its about the value of subtree nodes than those of th
  3. 所属分类:Communication

    • 发布日期:2017-04-25
    • 文件大小:63279
    • 提供者:李南
  1. xsz

    0下载:
  2. 在一个圆形操场的四周摆放着n 堆石子。现要将石子有次序地合并成一堆。规定每次只能选相邻的2 堆石子合并成新的一堆,并将新的一堆石子数记为该次合并的得分。试设计一个算法,计算出将n堆石子合并成一堆的最小得分和最大得分。 -Playground in a circle around the stones are placed n heap. Stone is to have the order to merge into a pile. Election can only be provide
  3. 所属分类:Document

    • 发布日期:2017-04-04
    • 文件大小:922
    • 提供者:fjskffsjf
  1. AntiOverflows

    0下载:
  2. Protection Against Exploitation of Stack And Heap Overflows
  3. 所属分类:software engineering

    • 发布日期:2017-04-17
    • 文件大小:29679
    • 提供者:tourister
  1. heap

    0下载:
  2. 简单的小程序,实现堆排序,输出二叉搜索树等功能-heap
  3. 所属分类:Document

    • 发布日期:2017-04-12
    • 文件大小:599
    • 提供者:Constancy
  1. E22_hw6

    0下载:
  2. 用雙向的queue實做出動態的heap 有雙向刪除雙向寫入的資料結構之功能-Queue with two-way real way to make dynamic heap have remove the two-way data structure to write the function
  3. 所属分类:File Formats

    • 发布日期:2017-04-10
    • 文件大小:794
    • 提供者:linyf
  1. DZ

    0下载:
  2. 介绍了C++里堆和栈的区别和联系,很好的 介绍-Introduced C++ in the difference between heap and stack and links, very good descr iption
  3. 所属分类:Document

    • 发布日期:2017-04-15
    • 文件大小:7782
    • 提供者:阴招
  1. paixu2

    0下载:
  2. 数据结构排序算法的比较,起泡排序、直接插入排序、简单选择排序、快速排序、希尔排序、堆排序-Comparison of data structures sorting algorithm, bubble sort, direct insertion sort, simple selection sort, quick sort, Shell sort, Heap sort
  3. 所属分类:File Formats

    • 发布日期:2017-03-31
    • 文件大小:2424
    • 提供者:张森
  1. heap

    0下载:
  2. 二叉堆的操作。包括最大堆和最小堆的建立与调整。-Binary heap operations. Including the largest heap and the establishment and adjustment of the minimum heap.
  3. 所属分类:software engineering

    • 发布日期:2017-11-14
    • 文件大小:8697
    • 提供者:张合
  1. Heap-and-stack

    0下载:
  2. c语言堆与栈的详细介绍,包括区别、使用方法等-Details c language heap and stack, including the difference between the use of methods
  3. 所属分类:File Formats

    • 发布日期:2017-04-16
    • 文件大小:37931
    • 提供者:张永超
  1. Java-stack-and-heap

    0下载:
  2. 堆和栈都是java用来在RAM中存放数据的地方。与C++不同,java自动管理堆栈,程序员不能直接设置堆栈. - Java heap and stack are used for local storage of data in RAM. Unlike C++, java automatic management stack, the programmer can not directly set the stack.
  3. 所属分类:software engineering

    • 发布日期:2017-04-30
    • 文件大小:13982
    • 提供者:anjin
  1. Heap-Layers-master

    0下载:
  2. library to manage heap memory
  3. 所属分类:software engineering

    • 发布日期:2017-05-04
    • 文件大小:142848
    • 提供者:ginopino
« 12 3 »
搜珍网 www.dssz.com