数据结构
文章平均质量分 66
喵头鹰
一只小弱鸡~~
展开
-
数据结构实验报告 栈和队列
一、实验目的1.掌握栈、队列的思想及其存储实现。 2.掌握栈、队列的常见算法的程序实现。二、实验仪器及环境:PC计算机 windows 7操作系统 CodeBlocks10.05三、实验内容及结果1.采用链式存储实现栈的初始化、入栈、出栈操作。 2.采用顺序存储实现栈的初始化、入栈、出栈操作。 3.采用链式存储实现队列的初始化、入队、出队操作。 4.采用顺序存原创 2016-04-26 20:30:03 · 17746 阅读 · 0 评论 -
栈——算术表达式
将一个算术表达式(即中缀形式)转化成其后缀形式,并算出答案。#include <stdio.h>#include <string.h>#include <iostream>#include <stack>#include <algorithm>#include <stdlib.h>using namespace std;using namespace std;bool IsOperato原创 2016-04-26 20:36:04 · 518 阅读 · 0 评论 -
数据结构实验报告 链表
一、实验目的(1)掌握线性表的基本运算在两种存储结构(顺序结构和链式结构)上的实现; (2)掌握线性表的各种操作(建立、插入、删除等)的实现算法;二、实验仪器及环境:PC计算机 windows 7操作系统 CodeBlocks10.05三、实验内容及结果(按照具体实验题目,按照如下格式书写)1.随机产生或键盘输入一组元素,建立一个带头结点的单向链表(无序)。 2.遍历单向链表。 3.把单向链原创 2016-04-17 17:57:09 · 16797 阅读 · 0 评论 -
HDU 5775 Bubble Sort 树状数组求逆序数
题目描述:Problem Description P is a permutation of the integers from 1 to N(index starting from 1). Here is the code of Bubble Sort in C++.for(int i=1;i<=N;++i) for(int j=N,t;j>i;—j) if(P[j原创 2016-08-01 19:52:43 · 336 阅读 · 0 评论 -
HDU 5818 Joint Stacks 模拟
题目描述:Problem Description A stack is a data structure in which all insertions and deletions of entries are made at one end, called the “top” of the stack. The last entry which is inserted is the first原创 2016-08-13 11:19:26 · 289 阅读 · 0 评论