#include<stdio.h>
#include<stdlib.h>
typedef struct listnode{
int data;
struct listnode* next;
}listnode;
listnode* createtree(int n){
listnode* head=(listnode*)malloc(sizeof(listnode));
head->next=NULL;
listnode *p=head;
while(n--){
int data;
scanf
求助 为什么OJ上提交了显示‘wrong answer’
最新推荐文章于 2024-06-10 19:10:49 发布