检查下列代码使其能正常输出 #include<bits/stdc++.h> using namespace std; char s[13][20]={'\0'}; struct ArcNode { int adjest; ArcNode *next; }; typedef struct { int vertex; int count; ArcNode firstedge; } VNode; class AdjGraph { private: int VertexNum; int ArcNum; public: VNode adjlist[100]; AdjGraph(int a[],int n,int e); ~AdjGraph(); }; AdjGraph::AdjGraph(int a[],int n,int e) { int i,j,k; VertexNum=n; ArcNum=e; for(i=1;i<=VertexNum;i++) { adjlist[i].vertex=a[i]; adjlist[i].firstedge=NULL; } int q; for(k=0;k<ArcNum;k++) { char s2[20]={'\0'}; char s3[20]={'\0'}; char s0[20]={'\0'}; cin>>s2; cin>>s3; for(q=1;q<=n;q++) { strcpy(s0,s[q]);/**/ if(strcmp(s0,s2)==0) i=q; if(strcmp(s0,s3)==0) j=q; } ArcNode s=new ArcNode; s->adjest=j; s->next=adjlist[i].firstedge; adjlist[i].firstedge=s; } delete [] s; } AdjGraph::~AdjGraph() { } void TopSort(AdjGraph G,int n) { int i,j,l=0; int v; int b[100]={0}; int St[100],top=-1; ArcNode p; for (i=1;i<=n;i++) G->adjlist[i].count=0; for (i=1;i<=n;i++) { p=G->adjlist[i].firstedge; while (p!=NULL) { G->adjlist[p->adjest].count++; p=p->next; } } for (i=n;i>0;i--) if (G->adjlist[i].count==0) { top++; St[top]=i; } while (top>-1) { i=St[top];top--; b[l]=i; l++; p=G->adjlist[i].firstedge; while (p!=NULL) { j=p->adjest; G->adjlist[j].count--; if (G->adjlist[j].count==0) { v=St[top]; if(v>=j) {top++; St[top]=j;} else { St[top]=j; top++; St[top]=v; } } p=p->next; //找下一个邻接点 } } if(l!=n) { cout<<"False"; } else { for(i=0;i<l;i++) { cout<<s[b[i]]; if(i!=n-1) cout<<endl; } } } int main() { int n,e,i; ArcNode p; cin>>n>>e; char s1[20]={'\0'}; for(i=1;i<=n;i++) { cin>>s1; strcpy(s[i],s1); } int a[100]={0}; for(i=1;i<=n;i++) { a[i]=i; } AdjGraph A(a,n,e); / for(i=1;i<=n;i++) { cout<<A.adjlist[i].vertex<<"--->"; p=A.adjlist[i].firstedge; while(p!=NULL) { cout<<p->adjest<<"--->"; p=p->next; } cout<<endl; } */ AdjGraph *G=&A; TopSort(G,n); return 0; }
时间: 2024-04-27 13:21:14 浏览: 83
总结.docx 冒泡排序 选择排序 插入排序 归并排序 快速排序 结构体排序(冒泡排序+结构体的应用) 桶排序 二分查找 DFS
这段代码存在一些问题,需要修改才能正常输出。具体问题如下:
1. `#include<bits/stdc++.h>`这行头文件不规范,应该使用`#include<iostream>`代替。
2. `ArcNode s=new ArcNode;`这行代码存在内存泄漏,应该使用`ArcNode* s=new ArcNode;`代替,并在合适的位置使用`delete`释放内存。
3. `void TopSort(AdjGraph G,int n)`这个函数的形参类型不正确,应该改为`void TopSort(AdjGraph* G,int n)`,即传入一个指向`AdjGraph`对象的指针。
4. `cout<<s[b[i]];`这行代码中`s`数组未定义,应该改为`cout<<G->adjlist[b[i]].vertex;`,即输出对应节点的值。
修改后的代码如下:
阅读全文