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
Datastructure
数据结构学习(5):链表
using System; namespace
DataStructure
.LinkedList { /**//// 
·
2015-11-11 11:02
数据结构
数据结构学习(4):栈
栈: using System; namespace
DataStructure
.Stack { /**////&
·
2015-11-11 11:01
数据结构
数据结构学习(3):堆化优先队列
using System; namespace
DataStructure
.HeapPQ { /**//// &
·
2015-11-11 11:00
数据结构
C#应用MemoryStream提高File读取速度
一、场景: 需要将有一定格式的File里的内容读取到已经定义的类中,譬如一个二进制文件里的内容读取到一个新的
DataStructure
里面。 1.
·
2015-11-11 02:16
Stream
Fundamental
Datastructure
11988 - Broken Keyboard (a.k.a. Beiju Text) 可以用deque来模拟。 #include <iostream> #include <string> #include <string.h> #include <stdio.h> #include <queue> u
·
2015-11-10 21:14
struct
PAT Mooc
datastructure
6-1
Saving James Bond - Hard Version This time let us consider the situation in the movie "Live and Let Die" in which James Bond, the world's most famous spy, was captured by a group of drug de
·
2015-11-08 14:33
struct
PAT mooc
DataStructure
4-2 SetCollection
数据结构习题集-4-2 集合的运用 1.题目: We have a network of computers and a list of bi-directional connections. Each of these connections allows a file transfer from one computer to another. Is it possible
·
2015-11-08 14:32
Collection
PAT MOOC
dataStructure
4-1
数据结构练习 4-1 AVL 树 1. 题目: Input Specification: Each input file contains one test case. For each case, the first line contains a positive integer N (<=20) which is the total number of keys to be in
·
2015-11-08 14:31
struct
【
DataStructure
】The description of Java Collections Framework
The Java Connections FrameWork is a group of class or method and interfacs in the java.util package. Its main purpose is to provide a unified framework for implementing common data structure. A collec
·
2015-11-07 10:12
Collections
【数据结构】 二分查找 + 冒泡选择 + 快排
二分查找 package
datastructure
; public class binary_search { public static void main(String[]
·
2015-11-02 17:42
数据结构
Data Structure导论的导论
DataStructure
是一组互相之间存在一种或多种特定关系的数据的组织方式和它们在计算机内的存储方式,以及定义在该数据上的一组操作
·
2015-11-02 10:45
struct
java list内部构造
看代码吧,如下: package com.Core.
datastructure
; import java.lang.reflect.Array; import java.util.Collection
·
2015-10-31 11:00
java
DataStructure
.BloomFilter
Bloom Filters Ref[1] 1. 简介 Bloom filter(布隆过滤器;有更好的或正确的翻译,告诉我) 是一个数据结构,该数据结构快速并且内存高效,它可以告诉你某个元素是否在集合中。 作为高效的代价,Bloom filter是存在概率的数据结构:它告诉我们某个元素一定不在集合中,或者可能在集合中。 Bloom filter的基本数据结构是Bit Vector。 在Re
·
2015-10-31 10:54
filter
C#应用MemoryStream提高File读取速度
一、场景: 需要将有一定格式的File里的内容读取到已经定义的类中,譬如一个二进制文件里的内容读取到一个新的
DataStructure
里面。 1.
·
2015-10-30 11:25
Stream
java容器详解
容器是用对象封装的数据结构(
datastructure
)。 充满梦想的容器不同的数据结构有不同的组织元素的方式,也可以有不同的操作。根据具体实施的不同,数据结构的操作效率也各有差别。
郑树恒
·
2015-10-27 20:00
java
java容器详解
Sicily1153-马的周游问题:启发式搜索
代码地址: https://github.com/laiy/
Datastructure
-Algorithm/blob/master/sicily/1153.c题目如下:1153.马的周游问题ConstraintsTimeLimit
laiy
·
2015-10-16 14:00
Sicily1151:魔板搜索及优化
最终优化代码地址: https://github.com/laiy/
Datastructure
-Algorithm/blob/master/sicily/1151.c题目如下ConstraintsTimeLimit
laiy
·
2015-10-12 21:00
C打印函数printf的一种实现原理简要分析
0】README0.1)本文旨在对printf的某一种实现原理进行分析,做了解之用;0.2)vsprintf和printf.c的源码,参见https://github.com/pacosonTang/
dataStructure
-algorithmAnalysis
PacosonSWJTU
·
2015-10-03 21:00
操作系统
C语言
Sicily1020-大数求余算法及优化
Github最终优化代码: https://github.com/laiy/
Datastructure
-Algorithm/blob/master/sicily/1020.c题目如下:1020.BigIntegerConstraintsTimeLimit
laiy
·
2015-09-23 11:00
双向循环链表
packagecom.
datastructure
.List; importjava.util.Collection; importjava.util.NoSuchElementException;
u013993712
·
2015-09-20 20:00
链表
整理的一些java源码
学学思路
什么是数据结构?
CliffordA.Shaffer,《数据结构与算法分析》“数据结构(
datastructure
)是计算机中存储、组
MakeYourChance
·
2015-09-15 16:00
数据结构
编程
算法
【前端也要学点数据结构】 神奇的树状数组
最近在学习位运算,正好把树状数组总结下,也算是能正式给
datastructure
建个分类。那么,树状数组到底有什么用呢?诚然,一样没什么卵用的东西我们学它干嘛。下面举个树状数组的经典应用:区间求和。
韩子迟
·
2015-09-14 14:00
编程之路-编程语言知识点纲要
入门概述(Introduction)VersionIteration:版本迭代QuickStartBuilder&DependenceManager:构建与版本管理数据结构(
DataStructure
)
wxyyxc1992
·
2015-09-05 21:00
数据结构 (一)——宏观导论
数据结构(一)——宏观导论 数据,从一开始TGB的第一年,就受米老师的熏陶,初步的了解到计算机数据:0、1,之后的编译原理、操作系统,简单的说数据结构(
DataStructure
u013067756
·
2015-08-31 21:00
数据结构
数据库
数据
架构
软件开发
github的一些常用方法
git常用的命令有:Local:
[email protected]
:Cbird-coder/
datastructure
.git#在本地克隆一个github上仓库 gitstatus#获得当前项目的一个状况
xygl2009
·
2015-08-13 17:00
_
DataStructure
_C_Impl:共享栈
//_
DataStructure
_C_Impl:共享栈 #include #include #defineStackSize100 typedefcharDataType; //两个共享栈的数据结构类型定义
fanpengfei0
·
2015-08-03 23:00
数据结构
栈
_
DataStructure
_C_Impl:顺序栈
//_
DataStructure
_C_Impl:顺序栈 #include #include #defineStackSize100 typedefcharDataType; typedefstruct{
fanpengfei0
·
2015-08-03 23:00
数据结构
栈
数据结构之链表、栈和队列 java代码实现
定义抽象节点类Node:packagecn.wzbrilliant.
datastructure
; /** *节点 *@authorice * */ publicabstractclassNode{ privateNodenext
u013805360
·
2015-08-03 23:00
数据结构
链表
队列
栈
_
DataStructure
_C_Impl:一元多项式
//一元多项式 #include #include typedefstructployn{ floatcoef;//存放一元多项式的系数 intexpn;//存放一元多项式的指数 structployn*next; }PolyNode,*PolyNomial; //创建一元多项式 PolyNomialCreatePolyn(){ PolyNode*p,*q,*s; PolyNode*head=N
fanpengfei0
·
2015-08-02 22:00
数据结构
链表
_
DataStructure
_C_Impl:双向链表
//双向链表 #include #include typedefcharDataType; typedefstructNode{ DataTypedata; structNode*prior; structNode*next; }DListNode,*DLinkList; //初始化双向循环链表 intInitDList(DLinkList*head){//head是二级指针 *head=(DL
fanpengfei0
·
2015-08-02 22:00
数据结构
链表
_
DataStructure
_C_Impl:静态链表
//静态链表 #include #include #defineListSize10 typedefcharDataType; //静态链表结点类型定义 typedefstruct{ DataTypedata;//数据域 intcur;//游标,类似指针域 }SListNode; //静态链表类型定义 typedefstruct{ SListNodelist[ListSize]; intav;//
fanpengfei0
·
2015-08-02 22:00
数据结构
链表
_
DataStructure
_C_Impl:循环单链表
//CycList:循环单链表 #include #include typedefintDataType; typedefstructNode{ DataTypedata; structNode*next; }ListNode,*LinkList; //创建一个不带头结点的循环单链表 LinkListCreateCycList(intn){ DataTypee; LinkListhead=NUL
fanpengfei0
·
2015-07-31 23:00
数据结构
Josephus
_
DataStructure
_C_Impl:单链表
//线性表的链式存储:单链表 #include #include typedefintDataType; typedefstructNode { DataTypedata;//数据域 structNode*next;//指针域 }ListNode,*LinkList; //将单链表初始化为空。动态生成一个头结点,并将头结点的指针域置为空 voidInitList(LinkList*head){
fanpengfei0
·
2015-07-30 23:00
_
DataStructure
_C_Impl:顺序表
//线性表的顺序存储:顺序表 //#pragmaonce //#ifndefSeqList_H //#defineSeqList_H #include #include #defineListSize100 typedefintDataType; typedefstruct{ DataTypelist[ListSize]; intlength; }SeqList; //线性表的基本运算 //线
fanpengfei0
·
2015-07-30 02:00
数据结构
线性表
DataStructure
-1-基础
1.1数据结构概念:(1)数据结构:是相互之间存在一种或多种特定关系的数据元素的集合.(2)数据结构分为:逻辑结构与物理结构逻辑结构:是指数据对象中数据元素之间的相互关系。集合结构:集合结构中的数据元素除了同属于一个集合外,它们之间没有任何关系。线性结构:数据元素之间是一对一的关系。树形结构:数据元素之间存在一种一对多的关系图形结构:数据元素之间是多对多的关系。物理结构:是指数据的逻辑结构在计算机
mayi_xiaochuan
·
2015-07-23 13:13
DataStructure
开放《数据结构》专栏的代码
之前写的《数据结构》系列博客,虽然已经贴出了主要部分的代码,但还是经常有人问我要代码,我就直接把它开源得了,把代码托管在github上:https://github.com/luoweifu/
DataStructure
.git
luoweifu
·
2015-07-05 22:00
java
数据结构
gethostbyname
structhostent*gethostbyname(constchar*name);DataStructurehttp://www.cnblogs.com/LubinLew/p/POSIX-
DataStructure
.html
LubinLew
·
2015-06-09 14:00
【数据结构复习】线性表的链式存储--单链表
链表的重点概念:数据域和指针域头指针和头结点下面是单链表的实现源码:// //main.c //
DataStructure
// //CreatedbySuooLon15/5/22.
hu1020935219
·
2015-05-22 08:00
数据结构之栈和队列
Queue)则是一种先进先出(fisrtinfirstout,FIFO)的结构,如下图:2.链表实现的栈 /** *@Title:LinkedStack.java *@Packageio.shaoshuai.
datastructure
steveguoshao
·
2015-05-18 00:00
数据结构之分治法(最短距离)-(十一)
packagecom.lip.
datastructure
; /** *@authorlip *分治法,所谓分治当然是分而治之,化整为零。
yilip
·
2015-05-11 19:00
数据结构之贪心算法(背包问题的思考)-(十)
packagecom.lip.
datastructure
; /** *贪心算法:装箱问题的思考 *@authorLip *装箱问题可以是时间调问题的延伸,当一个箱子没有容积限制,那么就是时间调度问题 *
yilip
·
2015-05-09 01:00
数据结构
算法
动态规划
贪心算法
数据结构之计算器的实现(JAVA)(四)
,将运算结果放入到栈中 4.重复,直到将字符操作完,此时栈中只剩下一个元素,即要运算的结果 PS:我没有处理,只可以运行10以内的运算,如果有需要可以扩展 packagecom.lip.
datastructure
.tree
yilip
·
2015-04-01 18:00
数据结构
栈
计算器
《算法导论》[第1章] 算法在计算中的作用-[1.1] 算法
数据结构(
datastructure
)是存储和组织数据的一种方式,以便于对数据进行访问和修改。|习题解答|1.1-1给出一个真实世界
dully957
·
2015-03-14 10:54
算法导论
习题答案
javascript设计模式-观察者模式(observer pattern)
(function ( window, doc, undef ) { // topics
datastructure
: // { // topic1: [ //
osmos
·
2015-03-13 13:00
LeetCode-Two Sum III - Data structure design
这个题让设计
datastructure
存储数据,实现add和find函数,find只要返回结果就行。一开始想到用hashmap后来觉得没有存value的必要,想改成set。
bsbcarter
·
2015-03-05 05:00
快速排序
转载地址:http://www2.gliet.edu.cn/jpkc/
datastructure
/course/course_content.asp?
whatever957
·
2015-03-01 23:51
Algorithm
快速排序
冒泡法排序
转载地址:http://www2.gliet.edu.cn/jpkc/
datastructure
/course/course_content.asp?
whatever957
·
2015-03-01 23:20
Algorithm
排序
冒泡法
多线程(并发编程)
算法(Algorithm),是一个计算问题的具体步骤,是程序的逻辑抽象;数据结构(
datastructure
),是计算机中存储、组织数据的方式;数据结构,包括逻辑结构和物理结构。
Nichole_525
·
2015-02-02 16:52
蓝杰~学习总结
多线程(并发编程)
算法(Algorithm),是一个计算问题的具体步骤,是程序的逻辑抽象;数据结构(
datastructure
),是计算机中存储、组织数据的方式;数据结构,包括逻辑结构和物理结构。
洛昱棠
·
2015-02-02 16:00
并发编程
DataStructure
-插入排序
插入排序算法是一个对少量元素进行排序的有效算法。插入排序的工作原理与打牌时整理手中的牌的做法类似,开始摸牌时,我们的左手是空的,接着一次从桌上摸起一张牌,并将它插入到左手的正确位置。为了找到这张牌的正确位置,要将它与手中已有的牌从右到左进行比较,无论什么时候手中的牌都是排序好的。【引自《算法导论》】 JAVA实现该算法如下:publicvoidinsertSort(int[]A){ for(in
My_Jobs
·
2015-01-27 15:00
上一页
9
10
11
12
13
14
15
16
下一页
按字母分类:
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
其他