文章
6
粉丝
369
获赞
1
访问
49.3k
#include<stdio.h>
#include<stdlib.h>
#include<stdbool.h>
#include<string.h>
struct Node {
char *s;
bool tag;
};
bool search(char*a,char*b,struct Node *x,int *m) {
bool flag = false;
int i = 0;
for (i = 0; i < *m; i++) {
if (strcmp(x[i].s,b)==0) {
if(x[i].tag)
flag = true;
break;
}
}
if (strcmp(a, "Install") == 0) {
if (!flag) {
int ma = 0;
for (int j = 0; j < *m; j++) {
 ...
登录后发布评论
暂无评论,来抢沙发