單鏈表

以下代碼僅供參考:
#include <iostream>
using namespace std;
typedef int Status;
struct node { //定義結(jié)點類型;
    Status data;
    node *next;
};
node *creat_linklist() { //創(chuàng)建鏈表;
    node *head;
    node *p = new node;
    head = p;
    p -> next = nullptr;
    head -> next = nullptr;
    return head;
}
node *push_front(node *head,Status num) { //頭插法;
    node *p = new node;
    p -> data = num;
    p -> next = head -> next;
    head -> next = p;
    return head;
}
node *push_back(node *head,Status num) { //尾插法;
    node *p = new node;
    p -> data = num;
    node *ptail;
    for (ptail = head;ptail -> next;ptail = ptail -> next);
    ptail -> next = p;
    ptail = p;
    return head;
}
int statistic_element(node *head) { //統(tǒng)計鏈表中元素的個數(shù);
    int len = 0;
    node *pi;
    for (pi = head -> next;pi;pi = pi -> next) {
        len++;
    }
    return len;
}
node *selectsort(node *head) { //鏈表的排序(元素從小到大);
    node *pi,*pj;
    node tnode;
    if (!head -> next) {
        return 0;
    }
    for (pi = head -> next;pi -> next;pi = pi -> next) {
        for (pj = pi -> next;pj;pj = pj -> next) {
            if (pi -> data > pj -> data) {
                tnode = *pi;
                *pi = *pj;
                *pj = tnode;
                node *tnode = pi -> next;
                pi -> next = pj -> next;
                pj -> next = tnode;
            }
        }
    }
    return head;
}
int find_node(node *head,Status num1) { //查找指定元素在鏈表中的個數(shù);
    node *pi;
    int count = 0;
    //node *pr = nullptr;
    if (head -> next) {
        for (pi = head -> next;pi;pi = pi -> next) {
            if (pi -> data == num1) {
                count++;
            }
        }
    }
    return count;
}
node *delete_linklist(node *head,Status num1) { //刪除鏈表中的結(jié)點;
    node *pi;
    node *pfront,*pnext;
    for (pi = head;pi -> next;pi = pi -> next) {
        if (pi -> next -> data == num1) {
            pfront = pi;
            pnext = pi -> next;
            break;
        }
    } 
    pfront -> next = pnext -> next;
    delete pi -> next;
    return head;
}
node *find_plast(node *head) { //查找鏈表中的尾元素;
    node *plast = nullptr;
    if (head -> next) {
        for (plast = head;plast -> next;plast = plast -> next);
    }
    return plast;
}
node *insert_selectedlinklist(node *head,Status num2) { //按順序插入鏈表;
    node *p = new node;
    p -> data = num2;
    if (head -> next == nullptr) {
        head -> next = p;
        p -> next = nullptr;
    }
    else {
        node *plast = find_plast(head);
        if (num2 > plast -> data) {
            plast -> next = p;
            p -> next = nullptr;
        }
        else if (p -> data < head -> next -> data) {
            node *pt = head -> next;
            head -> next = p;
            p -> next = pt;
        }
        else {
            node *pfront,*pnext;
            node *pi;
            for (pi = head -> next;pi -> next;pi = pi -> next) {
                if (pi -> next -> data >= p -> data) {
                    pfront = pi;
                    pnext = pi -> next;
                    break;
                }
            }
            pfront -> next = p;
            p -> next = pnext;
        }
    }
    return head;
}
void output(node *head) { //輸出鏈表中的元素;
    node *pi;
    for (pi = head -> next;pi;pi = pi -> next) {
        cout << pi -> data << " ";
    }
    cout << endl;
}
int main() { //測試;
    node *head = creat_linklist();
    output(head);
    Status num;
    cout << "input num:" << endl;
    while (cin >> num && num) {
        //head = push_front(head,num);
        head = push_back(head,num); 
    }
    output(head);
    int len = statistic_element(head);
    cout << "len = " << len << endl;
    head = selectsort(head);
    cout << "selected:" << endl;
    output(head);
    Status num1;
    cout << "What number do you want to delete?" << endl;
    cin >> num1;
    int count = find_node(head,num1);   
    if (count == 0) {
        cout << "This linklist hasn't this num!" << endl;
    }
    else {
        while (count--) {
            head = delete_linklist(head,num1);
        }
    }
    output(head);
    cout << "input number???" << endl;
    Status num2;
    while (cin >> num2 && num2) {
        head = insert_selectedlinklist(head,num2);
    }
    output(head);
    return 0;
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末毛肋,一起剝皮案震驚了整個濱河市怨咪,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌润匙,老刑警劉巖诗眨,帶你破解...
    沈念sama閱讀 210,978評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異孕讳,居然都是意外死亡匠楚,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評論 2 384
  • 文/潘曉璐 我一進(jìn)店門厂财,熙熙樓的掌柜王于貴愁眉苦臉地迎上來油啤,“玉大人,你說我怎么就攤上這事蟀苛。” “怎么了逮诲?”我有些...
    開封第一講書人閱讀 156,623評論 0 345
  • 文/不壞的土叔 我叫張陵帜平,是天一觀的道長幽告。 經(jīng)常有香客問我,道長裆甩,這世上最難降的妖魔是什么冗锁? 我笑而不...
    開封第一講書人閱讀 56,324評論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮嗤栓,結(jié)果婚禮上冻河,老公的妹妹穿的比我還像新娘。我一直安慰自己茉帅,他們只是感情好叨叙,可當(dāng)我...
    茶點故事閱讀 65,390評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著堪澎,像睡著了一般擂错。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上樱蛤,一...
    開封第一講書人閱讀 49,741評論 1 289
  • 那天钮呀,我揣著相機與錄音,去河邊找鬼昨凡。 笑死爽醋,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的便脊。 我是一名探鬼主播蚂四,決...
    沈念sama閱讀 38,892評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼就轧!你這毒婦竟也來了证杭?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,655評論 0 266
  • 序言:老撾萬榮一對情侶失蹤妒御,失蹤者是張志新(化名)和其女友劉穎解愤,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體乎莉,經(jīng)...
    沈念sama閱讀 44,104評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡送讲,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了惋啃。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片哼鬓。...
    茶點故事閱讀 38,569評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖边灭,靈堂內(nèi)的尸體忽然破棺而出异希,到底是詐尸還是另有隱情,我是刑警寧澤绒瘦,帶...
    沈念sama閱讀 34,254評論 4 328
  • 正文 年R本政府宣布称簿,位于F島的核電站扣癣,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏憨降。R本人自食惡果不足惜父虑,卻給世界環(huán)境...
    茶點故事閱讀 39,834評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望授药。 院中可真熱鬧士嚎,春花似錦、人聲如沸悔叽。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽骄蝇。三九已至膳殷,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間九火,已是汗流浹背赚窃。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評論 1 264
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留岔激,地道東北人勒极。 一個月前我還...
    沈念sama閱讀 46,260評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像虑鼎,于是被迫代替她去往敵國和親辱匿。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,446評論 2 348

推薦閱讀更多精彩內(nèi)容