码迷,mamicode.com
首页 >  
搜索关键字:structure    ( 2775个结果
转:查找的基本概念
转自:http://student.zjzk.cn/course_ware/data_structure/web/chazhao/chazhao9.1.1.htm本章简介 由于查找运算的使用频率很高,几乎在任何一个计算机系统软件和应用软件中都会涉及到,所以当问题所涉及的数据量相当大时,查找方法的效....
分类:其他好文   时间:2014-09-10 19:25:30    阅读次数:201
转:线性表的查找-分块查找
转自:http://student.zjzk.cn/course_ware/data_structure/web/chazhao/chazhao9.2.3.htm分块查找 分块查找(Blocking Search)又称索引顺序查找。它是一种性能介于顺序查找和二分查找之间的查找方法。 1、 二分查找....
分类:其他好文   时间:2014-09-10 19:24:30    阅读次数:273
Data Structure学习(一)--- 基本概念
(一)顺序表1.基本概念: 首元结点:存储第一个数据元素的结点。 头结点:在链表的首元结点之前附设一个结点,便于对首元结点操作。 头指针:指向链表中的第一个结点。 插入/删除:在顺序表中插入或删除一个元素,需要平均移动一半个元素,具体移动的元素个数与元素位置有关。 在单链表中,除了首元结点...
分类:其他好文   时间:2014-09-10 15:35:30    阅读次数:259
Functional programming
In computer science, functional programming is a programming paradigm, a style of building the structure and elements of computer programs, that treat...
分类:其他好文   时间:2014-09-09 11:07:08    阅读次数:225
2.词法结构-JavaScript权威指南笔记
今天是第二章。所谓词法结构(lexical structure),就是写代码中最基本的东西,变量命名,注释,语句分隔等,这是抄书抄的。。。1.字符集,必须是Unicode,反正Unicode是ASCII的超集,各种语言妥妥支持,克林贡语=。=?当我没说2.JavaScript是区分大小写的。 ...
分类:编程语言   时间:2014-09-09 10:46:38    阅读次数:175
Cuckoo for Hashing(hash)
Problem B:Cuckoo for HashingAn integer hash table is a data structure that supports insert, delete and lookup of integer values inconstant time. Tradi...
分类:其他好文   时间:2014-09-05 21:07:02    阅读次数:275
UVA11995I Can Guess the Data Structure!(stack + queue + priority_queue)
题目:UVA11995I Can Guess the Data Structure!(stack + queue + priority_queue) 题目大意:给你两种指令,1代表让1后面的数字进入这个数据结构,2代表无差错的从数据结构中取出这个数字,问这个数据结构是stack还是queue还是priority_queue,还是不确定,还是以上均不可能。 解题思路:用STL中的...
分类:其他好文   时间:2014-09-05 10:04:21    阅读次数:204
【UVA】620-Cellular Structure(递推)
读错题了一开始。 一个细胞每次可以进行3中增值方式,给你一个最终形态,问你达到这个形态之前的那个到这个最终形态是通过哪一种方式得到的。 直接递推就可以了,小优化就是如果这个字符串长度为偶数,那么肯定发生了变异。 14144659 620 Cellular Structure Accepted C++ 0.009 2014-09-04 0...
分类:其他好文   时间:2014-09-04 17:06:25    阅读次数:176
JVMS Specification(3)-The class File Format
3 The class File Format 3.1 The ClassFile Structure 3.2 The Internal Form of Names 3.2.1 Binary Class and Interface Names 3.2.2 Unqualified Names 3.3 Descriptors and Signatures 3.3.1 Grammar Not...
分类:其他好文   时间:2014-09-03 16:57:58    阅读次数:358
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!