#include <iostream> using namespace std; #define Maxsize 200 #define ERROR 0 typedef struct Node { char data; struct Node* next; int length; } Linklist; Linklist* Initlist() { Linklist* T; T = new Linklist; T->next = NULL; T->length = 0; return T; } void StrAssign(Linklist*& T, char str[]) { T = Initlist(); Linklist* p = T; for (int i = 0; str[i] != '\0'; i++) { Linklist* s = new Linklist; s->data = str[i]; p->next = s; p = s; T->length++; } p->next = NULL; } Linklist* Concat(Linklist* S1, Linklist* S2) { Linklist* p1, * p2, * L, * p, * r; int len1 = 0, len2 = 0; L = Initlist(); r = L; p1 = S1->next; while (p1) { p = new Linklist; p->data = p1->data; p1 = p1->next; p->next = NULL; r->next = p; r = p; len1++; } r->next = NULL; p2 = S2->next; while (p2) { p = new Linklist; p->data = p2->data; p2 = p2->next; p->next = NULL; r->next = p; r = p; len2++; } L->length = len1 + len2; return L; } Linklist* Substr(Linklist* L, int pos, int len) { if (pos > L->length || pos < 1 || pos + len > L->length || len < 0) return ERROR; Linklist* p, * r, * l, * rr; l = Initlist(); r = L->next; rr = l; for (int i = 1; i < pos; i++) r = r->next; for (int i = 0; i < len; i++) { p = new Linklist; p->data = r->data; r = r->next; p->next = NULL; rr->next = p; rr = p; } l->length = len; return l; } void Replace(Linklist* L, Linklist T, Linklist V) { L = L->next; Linklist* headT = T.next; while (L) { if (L->data == headT->data) { Linklist* t = headT->next; Linklist* l = L->next; for () } } } void print(Linklist* L) { Linklist* p = L->next; while (p) { cout << p->data; p = p->next; }
时间: 2024-01-10 19:03:25 浏览: 83
这段代码是关于单链表的字符串操作,包括字符串初始化、拼接、子串截取和替换。其中,Initlist()函数用于初始化一个链表,StrAssign()函数用于将一个字符数组转化成链表存储,Concat()函数用于将两个链表拼接成一个新的链表,Substr()函数用于截取一个链表的子串,Replace()函数用于将链表中的某个子串替换成另一个链表。print()函数用于输出链表的内容。
相关问题
顺序表插入操作 #include<iostream> using namespace std; #
顺序表插入操作是指在顺序表的第i个位置插入元素e,并将原来位于第i个位置及其之后的元素都后移一个位置。具体实现可以使用一个循环将第i个位置及其之后的元素后移,然后将元素e插入到第i个位置。以下是一个C++实现的示例代码:
```
#include<iostream>
using namespace std;
#define OK 1
#define ERROR 0
#define MAXSIZE 100
typedef int datatype;
typedef struct {
datatype *elem;
int length;
} SqList;
int ListInsert_Sq(SqList &L, int i, datatype e) {
if ((i < 1) || (i > L.length + 1)) {
return ERROR;
}
if (L.length >= MAXSIZE) {
return ERROR;
}
for (int j = L.length; j >= i; j--) {
L.elem[j] = L.elem[j - 1];
}
L.elem[i - 1] = e;
L.length++;
return OK;
}
```
--相关问题--:
//折半查找 #include<iostream> #include<fstream> #include<string> #include <algorithm> using namespace std; #define MAXSIZE 10000 #define KEYSIZE 10//关键词个数 #define OK 0 #define ERROR -1 typedef string KeyType; typedef struct { KeyType key;//关键字域 int count;//词频 int index;//在关键词列表中的序号 }ElemType; typedef struct { ElemType *R;//存储空间基地址 int length;//当前长度 }SSTable; //关键词列表 KeyType key[KEYSIZE] = {"little","prince","sheep","flowers","believe","stars","one","my","he","the"}; //初始化一个空的查找表ST //ST的0号单元闲置不用 int InitSSTable(SSTable &ST) { /*-----------代码开始--------------*/ /*-----------代码结束--------------*/ return OK; }
折半查找(二分查找)是一种高效的查找算法,它要求待查找的序列必须是有序的。它的基本思想是:首先确定待查找区间的中间位置,然后将待查找关键字与中间位置关键字进行比较,如果相等则查找成功;否则根据比较结果确定下一步查找的区间,直到找到所需的关键字或者区间为空为止。
在代码中,SSTable是一个结构体,它包含了一个关键字数组和一些其他的属性,如当前长度等。InitSSTable函数的作用是初始化一个空的查找表ST,即将ST中的R指向一个新分配的空间,并将其长度初始化为0。
阅读全文