這樣的話應(yīng)該符合你的要求:
十多年的善右網(wǎng)站建設(shè)經(jīng)驗,針對設(shè)計、前端、開發(fā)、售后、文案、推廣等六對一服務(wù),響應(yīng)快,48小時及時工作處理。網(wǎng)絡(luò)營銷推廣的優(yōu)勢是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動調(diào)整善右建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計,從而大程度地提升瀏覽體驗。創(chuàng)新互聯(lián)公司從事“善右網(wǎng)站設(shè)計”,“善右網(wǎng)站推廣”以來,每個客戶項目都認真落實執(zhí)行。
#includestdio.h
void?add(int?queue[],int?x);
int?Top(int?queue[]);
void?del(int?queue[]);
int?end=0;
int?main()
{
int?n;
scanf("%d",n);//將要入隊列n個元素
int?queue[1000];
for(int?i=1;i=n;i++)//輸入n個元素
{
add(queue,i);//將i加入隊列
}
//驗證加入隊列的元素,將隊列中的元素按照輸入的順序輸出:
for(?i=1;i=n;i++)
{
printf("%d?",Top(queue));//Top函數(shù)返回隊頭元素
del(queue);//刪除隊頭元素
}
//驗證輸出已經(jīng)出隊列后的隊列(數(shù)組)元素:
printf("\n");
for(i=1;i=n;i++)
printf("%d?",queue[i]);
printf("\n");
return?0;
}
void?add(int?queue[],int?x)
{
queue[++end]=x;
}
int?Top(int?queue[])
{
return?queue[1];//注意,這里的函數(shù)始終return?queue[1];這里是和將普通數(shù)組中的元素輸出最大的不同之處。?。。。。?!
}
void?del(int?queue[])
{
for(int?i=2;i=end;i++)
{
queue[i-1]=queue[i];
}
queue=0;//將刪除后的地方置0
end--;
}
#include assert.h
#include iostream.h
#ifndef POINTQUEUE
#define POINTQUEUE
template class Type class Queue; //前視聲明
template class Type
class QueueNode
{
friend class QueueType;
private:
Type data; //隊列結(jié)點數(shù)據(jù)
QueueNodeType *link; //結(jié)點鏈指針
QueueNode(Type d=0,QueueNode *l=NULL):data(d),link(l){};
};
template class Type
class Queue
{
public:
Queue():rear(NULL),front(NULL),length(0){};
~Queue();
void EnQueue(const Type item);
Type DeQueue();
Type GetFront();
void MakeEmpty(){ Distroy();front=rear=NULL; }
int Length(){ return length;}
bool IsEmpty()const { return front==NULL; }
private:
QueueNodeType *front, *rear; //隊列指針
int length;
void Distroy();
};
template class Type
QueueType::~Queue() //隊列的析構(gòu)函數(shù)
{
Distroy();
}
template class Type
void QueueType::EnQueue(const Type item) //將新元素item插入到隊列的隊尾
{
length++;
if(front==NULL)
front=rear=new QueueNodeType(item,NULL);
else
rear=rear-link=new QueueNodeType(item,NULL);
}
template class Type
Type QueueType::DeQueue() //刪去隊頭結(jié)點,并返回隊頭元素的值
{
assert(!IsEmpty()); //判隊空的斷言
length--;
QueueNodeType *p = front;
Type retvalue=p-data; //保存隊頭的值
front=front-link; //新隊頭
delete p;
return retvalue;
}
template class Type
Type QueueType::GetFront() //若隊不空,則函數(shù)返回隊頭元素的值
{
assert(!IsEmpty());
return front-data;
}
template class Type
void QueueType::Distroy()
{
QueueNodeType *p;
while(front!=NULL) //逐個結(jié)點釋放
{
p=front;
front=front-link;
delete p;
}
}
#endif
#include "pointqueue.h"
int main()
{
// Queueint qu(10);
Queueint qu;
int i;
for(i=0;i10;i++)
qu.EnQueue(i*10-3);
coutqu.Length()endl;
for(i=0;i10;i++)
coutqu.DeQueue()' ';
return 1;
}
黑色的提示框是程序運行結(jié)果窗口,不是錯誤的窗口
代碼錯誤說明如下:
while(Q-front!=Q-rear)//在本循環(huán)體之中,Q-front?Q-rear的值始終沒有變化
//故而在這里肯定是一個死循環(huán)
{
printf("%d,??",?Q-front-next-data);
Q-front-next=Q-front-next-next;
}
//改正后的代碼如下:
QNode*?s?=?Q-front;
while(s!=Q-rear)
{
printf("%d,??",?s-data);
s=s-next;
}
另外,所有的函數(shù)當中不應(yīng)該有exit
exit是一個系統(tǒng)函數(shù),表示結(jié)束程序,而不是退出函數(shù)
如果需要退出函數(shù)可以使用return來達到該目的
//定義隊列結(jié)構(gòu)體
typedef struct Qnode
{
int data;
struct Qnode *next;
} Queue , *QueuePtr;
typedef struct
{
QueuePtr front;
QueuePtr rear;
} linkQnode;
//創(chuàng)建一個隊列
initQueue (linkQnode *q)
{
q - front = q - rear = (QueuePtr) malloc (sizeof (Queue));
if (!q - front) exit (0);
q - front - next = NULL;
}
//入隊列
EnterQueue (linkQnode *q , int item)
{
QueuePtr p;
p = (QueuePtr) malloc (sizeof (Queue));
if (!p) exit (0);
p - data = item;
p - next = NULL;
q - rear - next = p;
q - rear = p;
}
//出隊列
DelQueue (linkQnode *q , int *item)
{
QueuePtr p;
if (q - front = q - rear) return;
p = q - front - next;
*item = p - data;
q - front - next = p - next;
if (q - rear == p)
q - rear = q - front;
free (p);
}
//定義一個int型數(shù)組que,長度為N(常量切大于2).
int?que[N];
int?rear=0,front=0;?//隊尾?隊頭
判斷隊列已滿:
if((front+1)%N==rear%N)??//成立則隊列已滿
判斷隊列為空
if((rear==front))?//成立則隊列空
入隊(一般在入隊前判斷隊列是否已滿)
//將val入隊
que[front++]=val;
front%=N;
出隊(一般在出隊前判斷隊列是否為空)
rear=(rear+1)%N;
下一個要出隊的元素(一般先判斷是否為空)
que[rear];
標題名稱:c語言隊列主函數(shù)出隊,隊列C語言實現(xiàn)
URL網(wǎng)址:http://sd-ha.com/article20/dsspsjo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站建設(shè)、網(wǎng)站內(nèi)鏈、網(wǎng)站設(shè)計公司、靜態(tài)網(wǎng)站、網(wǎng)站制作、App設(shè)計
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)