数据结构C++版 王红梅 OJ习题

1004: 单向链表(1)

Description

已知链表类的定义如下,实现各个成员函数。主函数中输入数据(以0结束)利用Insert函数依次将数据插入到表的1号位置,利用DispList按照逻辑次序输出表中元素,再输入一个要查找的元素,利用查找函数Locate查找其在表中的位置,最后利用Reverse函数将数据逆序,再利用DispList输出。

template 

class LinkList

{

 public:

    LinkList( ); //建立只有头结点的空链表

    ~LinkList();             //析构函数

    int Length();          //求单链表的长度

    int Locate(T x);       //求单链表中值为x的元素序号

    void Insert(int i, T x);   //在单链表中第i个位置插入元素值为x的结点

       void Reverse( );        //reverse list

    void DispList( );           //遍历单链表,按序号依次输出各元素

 private:

   Node *first; //单链表的头指针

}; 

输入样例说明:

例如输入数据为:1 2 3 4 5 6 0 3,即将1,2,3,4,5,6插入表中的1号位置,得到逻辑次序为6,5,4,3,2,1的顺序表,3为在表中待查找的数据,3的位置为4。

若输入:1 2 3 4 5 6 0 13

13在表中无,则输出:No found

即输出结果:

The length:6

The elements:
6 5 4 3 2 1
No found

The length:6
The elements:
1 2 3 4 5 6

Input

Output

Sample Input

1 2 3 4 5 6 0 3

Sample Output

The length:6
The elements:
6 5 4 3 2 1 
Found position:4
The length:6
The elements:
1 2 3 4 5 6 
#include 

using namespace std;
template
struct Node {
    T data;
    Node *next;
};

template
class LinkList {
public:
    LinkList(); //建立只有头结点的空链表
    ~LinkList();             //析构函数
    int Length();          //求单链表的长度
    int Locate(T x);       //求单链表中值为x的元素序号
    void Insert(int i, T x);   //在单链表中第i个位置插入元素值为x的结点
    void Reverse();        //reverse list
    void DispList();           //遍历单链表,按序号依次输出各元素
    bool IsSort();
private:
    Node *first; //单链表的头指针
};

template
LinkList::LinkList() {
    first = new Node;
    first->next = NULL;
}

template
LinkList::~LinkList() {
    while (first) {
        Node *q = first;
        first = first->next;
        delete q;
    }
}

template
int LinkList::Length() {
    int i = 0;
    Node *p = first->next;
    while (p) {
        p = p->next;
        i++;
    }
    return i;
}

template
int LinkList::Locate(T x) {
    int i = 1;
    Node *p = first->next;
    while (p) {
        if (p->data == x)return i;
        i++;
        p = p->next;
    }
    return 0;
}

template
void LinkList::Insert(int i, T x) {
    Node *p = first;
    int count = 0;
    while (p && count < i - 1) {
        p = p->next;
        count++;
    }
    if (p == NULL) throw "没有i - 1";
    else {
        Node *s = new Node;
        s->data = x;
        s->next = p->next;
        p->next = s;
    }
}

template
void LinkList::Reverse() {
    Node *p = first->next;
    first->next = NULL;
    while (p) {
        Node *q = p->next;
        p->next = first->next;
        first->next = p;
        p = q;
    }
}



template
void LinkList::DispList() {
    Node *p = first->next;
    cout << "The length:" << Length() << endl;
    cout << "The elements:" << endl;
    while (p) {
        cout << p->data << " ";
        p = p->next;
    }
    cout << endl;
}

template
bool LinkList::IsSort() {
    Node *p = first->next;
    int pre = p->data;
    p = p->next;
    while(p) {
        if(p->data > pre)
            return false;
        pre = p->data;
        p = p->next;
    }
    return true;
}


//1 2 3 4 5 6 0 3

int main() {
    LinkList L1;
    double n;
    while (cin >> n && n) {
        L1.Insert(1, n);
    }
    L1.DispList();
    int pos;
    cin >> pos;
    if (L1.Locate(pos))
        cout << "Found position:" << L1.Locate(pos) << endl;
    else
        cout << "No found" << endl;
    L1.Reverse();
    L1.DispList();
    return 0;
}

你可能感兴趣的:(数据结构学习,c++,数据结构,oj系统)