E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
├──基础数据结构
Cocos2d-x 3.0 数据结构
基础数据结构
在游戏开发中至关重要,可能每一帧某个逻辑需要从一个数组中查找,删除,添加数据,或者从一个字典中快速存/取一个值,游戏引擎本身也要对UI树进行遍历,排序等操作。
vinrex
·
2014-10-16 10:00
cocos2d-x
HOJ 题目分类
*******************************************************************************简单题(包括枚举,二分查找,(复杂)模拟,
基础数据结构
子饺
·
2014-10-06 11:21
HOJ
Java 集合类
为什么要了解Java 集合类Java 集合类提供了如线性表,链表和哈希表等
基础数据结构
的实现,通过它可以实现各种你想要的数据结构,如stack ,queue 等,了解Java 集合类的工作原理可以编出更高效性能的程序
ruyees
·
2014-10-05 11:00
单链表,双链表和循环链表之间的区别详解
链表是一种常见的
基础数据结构
,是一种线性表,但是并不会按线性的顺序存储数据,而是在每个节点里存到下一个节点的指针。
zhongwen7710
·
2014-09-06 17:00
数据结构
链表
单链表
基础数据结构
链表、栈、队列
数据结构是程序设计中一个非常重要的部分,基本的数据结构包括链表、栈和队列,当然高级一点的还有树、图等,实际上链表、栈和队列都是线性表,只是在操作和表示方式上有所不同,线性表用顺序结构表示就是顺序表,用链结构表示就是链表,如果对线性表的操作加以限制,只能有在表尾进行插入和删除元素,这就变成栈了,如果只能允许元素从表尾插入,表头删除,这就变成队列了。链表/* *数据结构链表 *链式结构 */ #in
LucienDuan
·
2014-08-24 19:00
数据结构
链表
队列
栈
算法导论
DVFS——
基础数据结构
分析(一)
1.DEFINE_PER_CPUstaticDEFINE_PER_CPU(structcpufreq_policy*,cpufreq_cpu_data);表示在编译链接的时候在.data..percpu段中增加一个类型为cpufreq_policy的cpufreq_cpu_data变量。当系统启动后,这个段通过setup_per_cpu_areas函数拷贝到每个cpu对应的自己的数据段中保存
rockrockwu
·
2014-07-31 19:00
OpenCV学习笔记(四十一)——再看
基础数据结构
core
记得我在OpenCV学习笔记(四)——新版本的数据结构core里面讲过新版本的数据结构了,可是我再看这部分的时候,我发现我当时实在是看得太马虎了。对于新版本的数据结构,我再说说。Point_类不用多言,里面两个成员变量x,y。Point_就是Point2i,也是Point,Point_就是Point2f,Point_就是Point2d。Point3_类不太常用,跟Point_类差不太多,成员变量x
u011867581
·
2014-07-28 00:00
opencv
100AC
100AC了,两个月前还觉得这是自己不太可能实现的任务,没想到蚂蚁啃骨头,也一点一点的啃完了,也正好最近公司没啥事,才能投入多的时间来刷题,这次刷题的跨度还是比较大的,从排序,模拟,
基础数据结构
到DP,
fyfcauc
·
2014-07-27 10:00
poj
单链表
链表(Linked list)是一种常见的
基础数据结构
,是一种线性表,但是并不会按线性的顺序存储数据,而是在每一个节点里存到下一个节点的指针(Pointer)。
jiangxt211
·
2014-06-23 11:00
OpenCV
基础数据结构
--基础入门
图像数据结构IPL 图像:IplImage |--int nChannels; // 色彩通道数(1,2,3,4) |--int depth; // 象素色深: | // IPL_DEPTH_8U,IPL_DEPTH_8S, | // IPL_DEPTH_16
feixiang_john
·
2014-05-28 15:00
genalloc — 通用内存分配器
1、
基础数据结构
首先看下分配器用到的几个数据结构,structgen_pool 用来描述一个内存池:structge
jiayichendddd
·
2014-05-15 02:00
基础数据结构
复习
package jxau.blueDot.lyx; /** * * @author lyx *@下午4:12:21 * @TODO: * 实现有序数组线性查找算法 */ /** * * 线性查找算法时间代价: * 如果已知数组是有序的,则可以改进线性查找算法,在查找不成功的情况下,一旦发现成员 * o[i]的值已经大于目标值,搜索过程就可以立即结束了。 * 设n
清风傲剑
·
2014-05-09 16:00
Python源码 -- C语言实现面向对象编程(基类&派生类&多态)
原文链接:http://blog.csdn.net/ordeder/article/details/25296307【
基础数据结构
】#definePyObject_HEAD\_PyObject_HEAD_EXTRA
ordeder
·
2014-05-08 12:16
算法&数据结构
Python
python
源码
C语言
继承
多态
Python源码 -- C语言实现面向对象编程(基类&派生类&多态)
原文链接:http://blog.csdn.net/ordeder/article/details/25296307【
基础数据结构
】#definePyObject_HEAD\ _PyObject_HEAD_EXTRA
ordeder
·
2014-05-08 12:00
源码
继承
python
C语言
多态
【程序猿笔试面试解题指南】链表问题汇总
我们先看一下链表的定义:链表(Linkedlist)是一种常见的
基础数据结构
,是一种线性表,但是并不会按线性的顺序存储数据,而是在每一个节点里存到下一个节点的指针(Pointer)。
Acidsweet
·
2014-05-05 16:00
C++
链表
数据结构和算法
《算法导论》笔记 第14章 14.2 如何扩张数据结构
【笔记】四个步骤:1)选择
基础数据结构
2)确定要在
基础数据结构
中添加哪些信息3)验证可用
基础数据结构
上的基本修改操作来维护这些新添加的信息4)设计新的操作【练习】14.2-1说明如何能在扩张的顺序统计树上
cyendra
·
2014-04-25 11:00
实习面试总结
3月初从武汉回到帝都,休息了一个周末,开始拿出各类书籍开始复习,目的就是为了能在3月份找份不错的互联网公司的实习,复习了一周的
基础数据结构
与算法之后,开始给在各大互联网公司的同学、学弟、学长送简历,帮忙内推
Acceptedxukai
·
2014-03-26 14:00
面试
linuxn 内核等待队列
Linux内核的等待队列是以双循环链表为
基础数据结构
,与进程调度机制紧密结合,能够用于实现核心的异步事件通知机制。
hktkfly6
·
2014-03-23 18:00
链表总结
链表总结1.什么是链表链表(Linkedlist)是一种常见的
基础数据结构
,是一种线性表,但是并不会按线性的顺序存储数据,而是在每一个节点里存到下一个节点的指针(Pointer)2.链表的优缺点用链表结构可以克服数组链表需要预先知道数据大小的缺点
我就是CT
·
2014-03-22 16:00
链表
java链表总结
windows
基础数据结构
盲点集合
1.windows编程里面UNREFERENCED_PARAMETER这个函数是干什么的?作用:告诉编译器,已经使用了该变量,不必检测警告! 在VC编译器下,如果您用最高级别进行编译,编译器就会很苛刻地指出您的非常细小的警告。当你生命了一个变量,而没有使用时,编译器就会报警告: “warningC4100:''XXXX'':unreferencedformalparameter.” 所以,为
findaway123
·
2014-03-09 22:00
windows
linux等待队列
Linux内核的等待队列是以双循环链表为
基础数据结构
,与进程调度机制紧密结合,能够用于实现核心的异步事件通知机制。
hustyangju
·
2014-03-07 13:00
linux内核
linux驱动
python
基础数据结构
——列表(list), 元祖(tuple), 字典(dict), 字符串(string), 集合(set) 介绍及相互转换
一)内容介绍python的
基础数据结构
有:列表(list),元祖(tuple),字典(dict),字符串(string),集合(set)1)列表(list)主要的方法:创建List>>>l=[1,(1,2
hhh3h
·
2014-02-18 20:00
Java实现的朴素贝叶斯分类器
用到的一些
基础数据结构
可以参考上一篇关于ID3的代码。
RangerWolf
·
2014-02-15 16:00
java
数据挖掘
聚类
linux等待队列wait_queue_head_t和wait_queue_t
Linux内核的等待队列是以双循环链表为
基础数据结构
,与进程调度机制紧密结合,能够用于实现核心的异步事件通知机制。它有两种数据结构:等待队列头
luoqindong
·
2014-01-04 11:00
基本数据结构(树和堆)
编程基础文章目录:五大基础算法
基础数据结构
(栈和队列)散列表常见C++知识
基础数据结构
(数组、串、广义表)四大比较排序算法
基础数据结构
(线性表)
基础数据结构
(树和堆) 微博:LinJM-机器视觉 Blogger
Linoi
·
2013-12-26 17:00
数据结构
树
堆
基本数据结构(数组、串、广义表)
编程基础文章目录:五大基础算法
基础数据结构
(栈和队列)散列表常见C++知识
基础数据结构
(数组、串、广义表)四大比较排序算法
基础数据结构
(线性表)
基础数据结构
(树和堆) 微博:LinJM-机器视觉Blogger
Linoi
·
2013-12-26 17:00
字符串
数组
广义表
基本数据结构(栈和队列)
编程基础文章目录:五大基础算法
基础数据结构
(栈和队列)散列表常见C++知识
基础数据结构
(数组、串、广义表)四大比较排序算法
基础数据结构
(线性表)
基础数据结构
(树和堆) 微博:LinJM-机器视觉Blogger
Linoi
·
2013-12-26 17:00
数据结构
栈
队列
常见的C++知识
编程基础文章目录:五大基础算法
基础数据结构
(栈和队列)散列表常见C++知识
基础数据结构
(数组、串、广义表)四大比较排序算法
基础数据结构
(线性表)
基础数据结构
(树和堆) 微博:LinJM-机器视觉Blogger
Linoi
·
2013-12-23 18:00
scanf
static
stringstream
explicit关键字
c/c++常用学习资料
此书介绍了c语言的基础语法、
基础数据结构
、指针等基本知识; 2、孙鑫老师的《c++视频教程》。
moki_oschina
·
2013-12-21 12:00
五大基础算法(枚举、递归、分治、贪心、模拟)
编程基础文章目录:五大基础算法
基础数据结构
(栈和队列)散列表常见C++知识
基础数据结构
(数组、串、广义表)四大比较排序算法
基础数据结构
(线性表)
基础数据结构
(树和堆) 微博:LinJM-机器视觉Blogger
Linoi
·
2013-12-18 13:00
贪心算法
递归法
分治算法
枚举法
基础数据结构
和算法十四:Directed Graphs
Indirectedgraphs,edgesareone-way:thepairofverticesthatdefineseachedgeisanorderedpairthatspecifiesaone-wayadjacency.Manyapplications(forexample,graphsthatrepresenttheweb,schedulingconstraints,orteleph
sunwinner
·
2013-12-15 22:00
Algorithm
Graph
sort
directed
Topological
基础数据结构
和算法十三:Undirected Graphs (2)
Design pattern for graph processing. Since we consider a large number of graph-processing algorithms, our initial design goal is to decouple our implementations from the graph representation
sunwinner
·
2013-12-13 22:00
Algorithm
基础数据结构
和算法十三:Undirected Graphs
Agraphisasetofverticesandacollectionofedgesthateachconnectapairofvertices. Vertexnamesarenotimportanttothedefinition,butweneedawaytorefertovertices.Byconvention,weusethenames0throughV-1fortheverticesi
sunwinner
·
2013-12-13 20:00
Algorithm
Graph
Undirected
基础数据结构
和算法十二:Hash table
Search algorithms that use hashing consist of two separate parts. The first part is to compute a hash function that transforms the search key into an array index. Ideally, different keys
sunwinner
·
2013-12-02 22:00
algorithms
Hash table
Data structure
基础数据结构
和算法十一:Red-black binary search tree
The insertion algorithm for 2-3 trees just described is not difficult to understand; now, we will see that it is also not difficult to implement. We will consider a simple representation known
sunwinner
·
2013-12-01 12:00
Algorithm
Red-black
动态可扩展哈希表的实现--第一集
近来从阿里到谷歌的面试笔试被虐,严重的反映出对
基础数据结构
与算法掌握的不足,痛定思痛,遂有此系列。此篇是我从:http://www.php-internals.com/book/?
lidexin2003
·
2013-11-30 16:58
C语言
可扩展
哈希表
基础数据结构
和算法十:2-3 search tree
Binary search tree works well for a wide variety of applications, but they have poor worst-case performance. Now we introduce a type of binary search tree where costs are guaranteed to be loga
sunwinner
·
2013-11-30 11:00
Algorithm
2-3 search tree
基础数据结构
和算法九:Binary Search Tree
A binary search tree (BST) is a binary tree where each node has a Comparable key (and an associated value) and satisfies the restriction that the key in any node is larger than the keys in all
sunwinner
·
2013-11-28 22:00
Algorithm
基础数据结构
和算法八:Binary search
Binary search needs an ordered array so that it can use array indexing to dramatically reduce the number of compares required for each search, using the classic and venerable binary search algori
sunwinner
·
2013-11-28 21:00
Algorithm
Binary search
基础数据结构
和算法七:Priority queue & Heap sort
Someimportantapplicationsofpriorityqueuesincludesimulationsystems,wherethekeyscorrespondtoeventtimes,tobeprocessedinchronologicalorder;jobscheduling,wherethekeyscorrespondtoprioritiesindicatingwhichta
sunwinner
·
2013-11-27 19:00
Queue
sort
heap
algorithms
Priority
Linux
基础数据结构
——双向链表
1、前言数据结构中的链表在任何教程里面都是放在最前面讲解,这不仅仅体现它的重要性,而且说明了它的基础性。不说是地基,也能说是根葱,顶梁柱。而且在整个内核当中,无处不在。记得在上大学的时候,学习数据结构链表,虽然用它写了很多程序,但是始终不晓得它的重要性在哪,更不知道它到底有何神通,用到何处。向左,向右,向前看,Linux要拐几个弯才来遇见(《遇见》),后来,终于在Linux中明白,有些地方一旦用了
JK198310
·
2013-11-27 11:00
基础数据结构
和算法六:Quick sort
Quick sort is probably used more widely than any other. It is popular because it is not difficult to implement, works well for a variety of different kinds of input data, and is substantially faster t
sunwinner
·
2013-11-21 19:00
Algorithm
Quicksort
基础数据结构
和算法五:Merge sort
Oneofmergesort’smostattractivepropertiesisthatitguaranteestosortanyarrayofNitemsintimeproportionaltoN*logN.ItsprimedisadvantageisthatitusesextraspaceproportionaltoN. Top-downmergesortItisoneofthebes
sunwinner
·
2013-11-20 21:00
Algorithm
sort
merge
基础数据结构
和算法四:Shell sort
Shellsort is a simple extension of insertion sort that gains speed by allowing exchanges of array entries that are far apart, to produce partially sorted arrays that can be efficiently sorted,
sunwinner
·
2013-11-20 19:00
Algorithm
基础数据结构
和算法三:Insertion Sort
As in selection sort, the items to the left of the current index are in sorted order during the sort, but they are not in their final position, as they may have to be moved to make room for smaller it
sunwinner
·
2013-11-19 21:00
Algorithm
基础数据结构
和算法二:Selection sort
One of the simplest sorting algorithms works as follows: First, find the smallest item in the array and exchange it with the first entry (itself if the first entry is already the smallest). Th
sunwinner
·
2013-11-19 20:00
Algorithm
Selection sort
基础数据结构
和算法一:UnionFind
The problem that we consider is not a toy problem; it is a fundamental computational task, and the solution that we develop is of use in a variety of applications, from percolation in physical
sunwinner
·
2013-11-19 20:00
Algorithm
opencv学习_4(opencv
基础数据结构
CvPoint & CvSize & CvRect & CvScalar & CvArr & CvMat)
1:包含在cxcore/include/cxtypes.h头文件中。2:CvPoint系列 -----(x,y) CvPoint:表示图像中的点 CvPoint2D32f:二维空间中的点 CvPoint3D32f:三维空间中的点3:CvSize系列-----宽度和高度 CvSize:图像的尺寸 CvSize2D32f:如果想用
Lu597203933
·
2013-10-31 19:00
CvMat
opencv结构
Linux内核的等待队列
Linux内核的等待队列是以双循环链表为
基础数据结构
,与进程调度机制紧密结合,能够用于实现核心的异步事件通知机制。
coldsnow33
·
2013-10-30 17:00
linux驱动
数据结构--链表
链表(Linkedlist)是一种常见的
基础数据结构
,是一种线性表,但是并不会
u011936381
·
2013-10-22 16:00
数据结构
链表
删除
插入
反转
上一页
26
27
28
29
30
31
32
33
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他