数据结构与算法 实验二:利用单链表(实现ADT)判断回文

必须要有两个 .h文件 和一个 .cpp文件,一个定义,一个实现,一个解决问题;
LinkedList.h

#ifndef LINKEDLIST_H_
#define LINKEDLIST_H_
#include <iostream>
#define OK 1
#define ERROR 0
typedef char ElemType;
typedef int status;
typedef  struct  LNode
{
	ElemType data;//数据域
	LNode *next;//指针域
} LNode, *LinkList;//定义结点和链表
 
status CreatLkList(LinkList &L, int n);				//前插法创建n个元素的链表
status InsertLkList(LinkList &L, int i, ElemType e);//在第i个位置插入元素e
status DeleteLkList(LinkList &L, int i);			//删除第i个元素
status DeleteLkList(LinkList &L, ElemType mmin, ElemType mmax);//删除区间(mmin,mmax)的元素
status DestoryLkList(LinkList &L);					//销毁链表
int FindOrInsert(LinkList &L, ElemType x);			//查找元素返回位序没有将其插入合适位置
LNode* reverseList(LinkList &L, int flag);			//递归反转链表
// std::ostream& operator<<(std::ostream& os, LinkList L);	//重载<<打印链表
#endif // !LINKEDLIST

SingleLinkedList.h

#include "LinkedList.h"
using namespace std;

status CreatLkList(LinkList &L, string s) //前插法创建,顺序与输入顺序相反
{
    L = new LNode; //创建头结点
    L->next = NULL;
    int len = s.size();
    for (int i = len; i >= 0; i--)
    {
        LNode *p = new LNode;
        p->data = s[i];
        p->next = L->next;
        L->next = p;
    }
    // LNode *t = L->next;
    // while (t)
    // {
    //     t = t->next;
    // }
    L = L->next;
    return OK;
}

status InsertLkList(LinkList &L, int i, ElemType e)
{
    LNode *p = L;
    int j = 0;
    //i的合法范围为1~L.length+1
    while (p && j < i - 1) //定位到第i-1个结点
    {
        p = p->next;
        j++;
    }
    if (!p || j > i - 1) //i>L.length或i<1
        return ERROR;
    LNode *t = new LNode; //创建新结点
    t->data = e;
    t->next = p->next;
    p->next = t; //插入到第i-1个后面
    return OK;
}

status DeleteLkList(LinkList &L, int i)
{
    LNode *p = L;
    int j = 0;
    //i的合法范围为1~L.length
    while (p->next && j < i - 1)
    {
        p = p->next;
        j++;
    }
    if (!p->next || j > i - 1) //i>L.length+1或i<1
    {
        cout << "\nThe value of i is out of bounds!\n";
        return ERROR;
    }
    LNode *t = p->next; //临时保存被删结点
    p->next = t->next;
    delete t;
    return OK;
}

status DeleteLkList(LinkList &L, ElemType mmin, ElemType mmax)
{
    LNode *pre = L;                 //初始头节点,修改前驱
    LNode *now = pre->next;         //当前工作指针
    LNode *t;                       //临时缓存
    while (now && now->data < mmax) //因升序,大于mmax提前跳出
    {
        if (now->data > mmin && now->data < mmax)
        {
            t = now;
            now = now->next;
            pre->next = now;
            delete t;
        }
        else
        {
            pre = pre->next;
            now = now->next;
        }
    }
    return OK;
}

status DestoryLkList(LinkList &L)
{
    LNode *t;
    while (L)
    {
        t = L; //保存头节点
        L = L->next;
        delete t;
    }
    cout << "\nThe LinkList is Destoryed!\n";
    return OK;
}
int FindOrInsert(LinkList &L, ElemType x)
{
    int i = 0;
    LNode *pre = L;
    LNode *now = pre->next;
    while (now && now->data <= x)
    {
        if (now->data == x) //找到返回位序
            return i;
        now = now->next;
        pre = pre->next;
        i++;
    }
    LNode *t = new LNode;
    t->data = x;
    t->next = now;
    pre->next = t;
    cout << "未找到 " << x << " 将其插入成功!\n";
    return 0; //失败返回位序0
}

LNode *reverseList(LinkList &L, int flag) //flag当前是否指向头结点标签
{
    if (!L->next || (!L->next->next && flag == 1)) //空表或一个元素
        return NULL;
    if (!L->next->next) //递归出口,L指向倒数第2个结点
    {
        LNode *tair = L->next; //保存尾结点
        tair->next = L;
        L->next = NULL;
        return tair; //返回尾节点
    }
    else
    {
        LNode *tair = reverseList(L->next, 0);
        if (flag) //L指向头结点
        {
            L->next->next = NULL; //原首元结点指向空
            L->next = tair;       //头结点指向原尾结点
        }
        else //指向L指向首元结点到倒数第3个结点
        {
            L->next->next = L;
            L->next = NULL;
        }
        return tair;
    }
}

// ostream &operator<<(ostream &os, LinkList L)
// {
//     LNode *p = L->next;
//     if (!p)
//     {
//         os << "The empty LinkedList" << endl;
//         return os;
//     }
//     cout << "L->";
//     while (p)
//     {
//         os << p->data << "->";
//         p = p->next;
//     }
//     os << "NULL";
//     return os;
// }

main.cpp

#include "SingleLinkedList.h"
#include <iostream>
using namespace std;

int main()
{
    LinkList L;
    string s;
    cin >> s;
    CreatLkList(L, s);
    int len = s.size();
    int i = len - 1;
    while (L && i >= 0)
    {
        if (L->data != s[i])
        {
            cout << "no" << endl;
            return 0;
        }
        L = L->next;
        i--;
    }
    if (L->next == NULL && i == -1)
    {
        cout << "yes" << endl;
        return 0;
    }
    else
    {
        cout << "no" << endl;
        return 0;
    }
}

说实话,这根本不需要ADT做什么事,但老师非要三个文件;

  • 0
    点赞
  • 13
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值