void library::modify(library &L, char* arr, char* arr1, char* arr2, char* arr3, char* arr4, char* arr5, char* arr6, char* arr7) { char a[100], b[100]; strcpy(a, arr); library *p; int count = 0, i = 0, j = 0; while (*arr != '\0') { count++; arr++; } p = L.next; while (p) { 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) { strcpy(p->data.name, arr1); strcpy(p->data.num, arr2); strcpy(p->data.tel, arr3); strcpy(p->data.cla, arr4); strcpy(p->data.name1, arr5); strcpy(p->data.time, arr6); strcpy(p->data.adress, arr7); 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; } p = p->next; } cout<<"查无此书,修改失败"<<endl; }为我详细解释每段代码
时间: 2024-02-14 19:07:31 浏览: 65
oracle中变长数组varray,嵌套表,集合使用方法
这段代码是一个图书管理系统中的修改函数,用于修改图书信息。下面是代码的详细解释:
```c++
void library::modify(library &L, char* arr, char* arr1, char* arr2, char* arr3, char* arr4, char* arr5, char* arr6, char* arr7)
```
这是修改函数的声明,其中library是一个类名,表示图书库,后面的参数分别是要修改的字段,比如书名、编号、电话、分类、作者、出版时间、地址等。
```c++
char a[100], b[100];
strcpy(a, arr);
library *p;
int count = 0, i = 0, j = 0;
while (*arr != '\0')
{
count++;
arr++;
}
```
这里定义了两个字符数组a和b,用于保存要查找的书名和图书库中已有的书名。然后使用strcpy函数将要查找的书名复制到a中。接着定义了指针p,用于遍历图书库中的每一个图书。count记录了要查找的书名的长度,i和j是用于比较两个字符串的指针。
```c++
p = L.next;
while (p)
{
strcpy(b, p->data.name);
i = 0, j = 0;
while (a[i] == b[j] && a[i] != '\0' && b[j] != '\0')
{
i++;
j++;
}
```
这里将指针p指向图书库的头节点,然后使用strcpy函数将p指向的图书名复制到b中。接着使用while循环比较a和b两个字符串,如果相等就继续比较下一个字符,直到有一个字符串到达了结尾或两个字符串不相等为止。
```c++
if (i == count)
{
strcpy(p->data.name, arr1);
strcpy(p->data.num, arr2);
strcpy(p->data.tel, arr3);
strcpy(p->data.cla, arr4);
strcpy(p->data.name1, arr5);
strcpy(p->data.time, arr6);
strcpy(p->data.adress, arr7);
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;
}
```
如果a和b两个字符串相等,说明找到了要修改的图书。这里将新的图书信息复制到p指向的图书节点中,然后输出修改成功的提示信息。接着打开文件text.txt,将图书库中的所有图书信息重新写入文件中。最后使用return语句退出函数。
```c++
p = p->next;
}
cout<<"查无此书,修改失败"<<endl;
```
如果遍历完整个图书库还没有找到要修改的图书,就说明没有这本书,输出查无此书的提示信息。
阅读全文