/** * Method 1: Delete the input element x * and meanwhile keep the length of array after deleted n * @param a the array * @param n the length of arra ...
分类:
其他好文 时间:
2017-04-24 10:05:08
阅读次数:
124
Arrayss work well for unordered sequences, and even for ordered squences if they don't change much. But if you want to maintain an ordered list that a ...
分类:
其他好文 时间:
2017-04-15 21:54:05
阅读次数:
231
''' 写在前面的话,本来想学习下数据结构,查半天说用C有利于理解内存释放什么,学生狗当然不怕折腾(虽然大部分说数据结构和算法学思想,和语言无关--||),看了列表什么的当然用C写一下啊,然后发现malloc什么的忘了,折腾半天想搞清楚malloc怎么实现运行的,这下好了,一发不可收拾了。 ''' ...
分类:
其他好文 时间:
2017-02-15 13:35:35
阅读次数:
169
A binary heap is a heap data structure created using a binary tree. binary tree has two rules - Implementation: Use array to store the data. Star ...
分类:
其他好文 时间:
2016-06-30 01:11:40
阅读次数:
551
1.前言 本文伪码和解释参考: http://blog.csdn.net/v_JULY_v/article/details/6105630 C实现的源码本文未贴出,请见: http://blog.csdn.net/v_july_v/article/details/6114226 July的博客对红黑 ...
分类:
其他好文 时间:
2016-06-10 13:42:36
阅读次数:
237
package com.txq.dataStructure; import java.util.ArrayList;import java.util.List;import java.util.Queue;import java.util.concurrent.ConcurrentLinkedDeq ...
分类:
其他好文 时间:
2016-05-10 16:45:20
阅读次数:
503
数据结构(DataStructure)与算法(Algorithm)、STL应用
分类:
编程语言 时间:
2016-02-27 23:18:21
阅读次数:
393
1 package datastructure; 2 //线性表 3 4 public interface IList { 5 public void clear(); 6 public boolean isEmpty(); 7 public int length(); 8 public Objec
分类:
编程语言 时间:
2016-02-02 19:52:20
阅读次数:
321
#includeusing namespace std;void main(){ int i, j; int s[] = { 1, 2, 3 }; int *temp = new int[5]; temp = s; for (i = 0; i < 5; i++) { cout << temp[i.....
分类:
其他好文 时间:
2016-01-01 12:52:11
阅读次数:
232
P.S.我去、、我大作业不会打成系数矩阵了吧!!!!!!!!!!!一、题目描述:对于一个Rows X Columns稀疏矩阵,使用三元组的方法进行存储。并在此基础上计算矩阵的乘法二、解题报告1.建立结构_Matrix1 MAXVALUE为预估零元峰值个数,2 struct _Matrix3 {4 ....
分类:
其他好文 时间:
2016-01-01 00:31:10
阅读次数:
323