#include
#include
typedef int elme;
typedef
struct node {
?elme data;
?struct node* next;
}Status;
Status* create()//頭節(jié)點(diǎn)
{
?Status* p = (Status*)malloc(sizeof(Status));
?if (p == NULL)
?{
??? ?exit(0);
?}
?else {
??? ?p->next = NULL;
?}
?return p;
}
Status* createnode(elme data)//做好節(jié)點(diǎn)放入數(shù)據(jù)返回;
{
?Status* p = (Status*)malloc(sizeof(Status));
?if (p == NULL)
?{
??? ?exit(0);
?}
?else {
??? ?p->data = data;
??? ?p->next = NULL;
?}
?return p;
}
void push(Status* p )//頭插法即為棧
{
?Status* s;
?int a=1 ;
?elme b;
?while (a)
?{ ?
??? ?printf("輸入要插入的數(shù)據(jù):");
??? ?scanf_s("%d", &b);
??? ?s = createnode(b);
??? ?s->next = p->next;
??? ?p->next = s;
??? ?printf("是否繼續(xù)輸入1(是)或者0(否)\n");
??? ?scanf_s("%d", &a);
?}
}
void pop(Status*p)//推出
{
?Status* s = p->next;
?while (s)
?{
??? ?printf("%d\n", s->data);
??? ?p->next = s->next;
??? ? s = p->next;
?}
}
int main()
{
?Status* t = create ();
??
?push(t);
?pop(t);
?return 0;
}
你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機(jī)房具備T級流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧
網(wǎng)頁題目:c語言-簡單實(shí)現(xiàn)《隊(duì)列與?!?--棧(鏈表實(shí)現(xiàn))-創(chuàng)新互聯(lián)
標(biāo)題鏈接:http://aaarwkj.com/article20/gjejo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供響應(yīng)式網(wǎng)站、ChatGPT、移動網(wǎng)站建設(shè)、App設(shè)計(jì)、定制網(wǎng)站、微信小程序
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容