码迷,mamicode.com
首页 > 其他好文 > 详细

sicily数据结构

时间:2017-04-16 22:37:04      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:data-   int   data   names   问题   第一个   slide   数据结构   下标   

由于半个学期的数据结构都没学,期末开始慌张,开始敲其他班数据结构的题,发现连打个队列都成问题了,原题如下; 请完成以下队列类的实现:(请注意数组实现应该为循环数组)
打吧。
一开始的想法是将rear 和front无限延伸,然后在具体取数组的数值时进行取模处理,从而达到逻辑上循环数组的效果,但后来发现同学的代码不是这样过了,觉得我自己的有很大的问题,int类型本身就是有限的,不可能无限延伸,这样循环数组即使有限我的代码也会因为溢出出现问题,第二点,我将队列空的情况想成rear-front==-1,这样在我一开始的想法下是没错的,但用同学的想法(每一次对队列进行增减操作都将rear和front设到正确的位置)就有很大问题,比如在中间rear-front==-1就不知道是满了还是0,所以我变成了rear-front==0为空的判别条件
最终代码如下:
#include
using namespace std;
enum ErrorCode {
success,
underflow,
overflow
};
const int maxQueue = 100;
template
class MyQueue {
public:
MyQueue() : front(0), rear(0) {}
// 判断队列是否为空
bool empty() const {return rear == front;}
// 入队操作
ErrorCode append(const QueueEntry &item) {
if ((rear + 1) % maxQueue == front) return overflow;
else {
entry[rear] = item;
rear = (rear + 1) % maxQueue;
return success;
}
}
// 出队操作
ErrorCode serve() {
if (rear == front) return underflow;
else {
front = (front + 1) % maxQueue;
return success;
}
}
// 获取队头元素
ErrorCode retrieve(QueueEntry &item) const {
if (rear == front) return underflow;
else {
item = entry[front];
return success;
}
}
// 判断队列是否已满
bool full() const {
return (rear + 1) % maxQueue == front;
}
// 获取队列已有元素个数
int size() const {
return (rear - front + maxQueue) % maxQueue;
}
// 清除队列所有元素
void clear() {
while (rear != front) {
serve();
}
}
// 获取队头元素并出队
ErrorCode retrieve_and_serve(QueueEntry &item) {
if (rear == front) return underflow;
else {
item = entry[front];
front = (front + 1) % maxQueue;
return success;
}
}
void print() {
for (int i = front; i < rear; i++) {
cout << entry[i] << ‘ ‘;
}
cout << endl;
cout << ‘size‘ << size() << endl;
cout << ‘fulll?‘ << full() << endl;
cout << ‘empty?‘ << empty() << endl;
}
private:
int front; // 队头下标
int rear; // 队尾下标
QueueEntry entry[100]; // 队列容器
};
第二题是根据队列进行一个游戏,题如下

技术分享X


本来用队列逻辑很清晰的做出来,按找游戏次序出列,入列,然后每个节点增加一个位置属性,输出就可以。懒癌复发,还是自己想其他方法作罢:
#include
using namespace std;
struct node {
int select;
int content;
};
int main() {
int t;
cin >> t;
while (t--) {
int n;
cin >> n;
node num[27];
int s = 0;
for (int i = 0; i < 27; i++) {
num[i].select = 0;
num[i].content = 0;
}//初始化
int j = 0;
for (int i = 0; i < n; i++) {
while(num[j].select != 0) j++;//每一次将j调到正确的位置,即上一次j之后的第一个未被选中的位置
int step = i;
while (step--) {
if (num[(j + 1) % n].select == 0) {}
else step++;
j = (j + 1) % n;
}//走未被选中的位置走step步
num[j].content = i + 1;
num[j].select = 1;
}
for (int i = 0; i < n; i++) {
cout << num[i].content << ‘ ‘;
}
cout << endl;
}
return 0;
}

sicily数据结构

标签:data-   int   data   names   问题   第一个   slide   数据结构   下标   

原文地址:http://www.cnblogs.com/eggplant-is-me/p/6720173.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!