void library::delete1(library &L, char* arr) { library *S; S = L.next; while(S) { S = S->next; } char a[100], b[100]; int i = 0, j = 0, count = 0; strcpy(a, arr); while (*arr != '\0') { count++; arr++; } library *p, *q, *r; q = &L; p = L.next; while (p != NULL) { strcpy(b, p->data.name); i = 0, j = 0; while (a[i] == b[j] && a[i] != '\0' && b[j] != '\0') { i++; j++; } if (i == count) { r = p; while (q) { while (q->next == r) { q->next = q->next->next; free(r); cout << "删除图书信息成功!" << endl; ofstream ofs; ofs.open("text.txt", ios::out); library *S; S = L.next; while (S) { ofs << S->data.name << " " << S->data.num << " " << S->data.tel << " " << S->data.cla << " "<< S->data.name1 << " " << S->data.time << " " << S->data.adress << " " << endl; S = S->next; } ofs.close(); return; } q = q->next; } } p = p->next; } cout<<"查无此书,删除失败"<<endl; }告诉我该段代码每一句的含义
时间: 2024-01-18 18:02:35 浏览: 66
函数:int **array2(int **arr,int n,int m) , C++ 输入二维数组 ,返回值二维数组
5星 · 资源好评率100%
这段代码实现了一个图书管理系统中删除图书信息的功能。下面是每一句的含义:
```C++
void library::delete1(library &L, char* arr) {
```
定义了一个名为 delete1 的 library 类的成员函数,该函数接收两个参数:一个为引用类型的 library 对象 L,另一个为 char* 类型的指针 arr,表示要删除的图书的名称。
```C++
library *S;
S = L.next;
while(S)
{
S = S->next;
}
```
定义了一个指向 library 对象的指针 S,并将其指向 L 的下一个节点。然后将 S 指针指向下一个节点,直到指向的节点为空。
```C++
char a[100], b[100];
int i = 0, j = 0, count = 0;
strcpy(a, arr);
while (*arr != '\0')
{
count++;
arr++;
}
```
定义了两个 char 类型的数组 a 和 b,以及三个 int 类型的变量 i、j 和 count。首先将 arr 指向的字符串复制到 a 数组中,然后使用 while 循环计算出字符串的长度并存储在 count 变量中。
```C++
library *p, *q, *r;
q = &L;
p = L.next;
while (p != NULL)
{
strcpy(b, p->data.name);
i = 0, j = 0;
while (a[i] == b[j] && a[i] != '\0' && b[j] != '\0')
{
i++;
j++;
}
if (i == count)
{
r = p;
while (q)
{
while (q->next == r)
{
q->next = q->next->next;
free(r);
cout << "删除图书信息成功!" << endl;
ofstream ofs;
ofs.open("text.txt", ios::out);
library *S;
S = L.next;
while (S)
{
ofs << S->data.name << " " << S->data.num << " " << S->data.tel << " " << S->data.cla << " "<< S->data.name1 << " " << S->data.time << " " << S->data.adress << " " << endl;
S = S->next;
}
ofs.close();
return;
}
q = q->next;
}
}
p = p->next;
}
cout<<"查无此书,删除失败"<<endl;
```
定义了三个指向 library 对象的指针 p、q 和 r。将 q 指针指向 L 的地址,p 指针指向 L 的下一个节点。然后使用 while 循环遍历整个链表,将节点中的图书名称复制到 b 数组中,并使用 while 循环比较 a 和 b 数组中的字符是否相同。如果相同,将 r 指针指向当前节点,并使用 while 循环删除该节点,并将删除成功的信息输出到控制台。同时,将链表中的图书信息写入到文件 "text.txt" 中,并退出函数。如果找不到要删除的图书,则输出 "查无此书,删除失败" 的信息。
阅读全文