- 博客(3)
- 收藏
- 关注
原创 求助 为什么OJ上提交了显示‘wrong answer’
#include<stdio.h>#include<stdlib.h>typedef struct listnode{ int data; struct listnode* next;}listnode;listnode* createtree(int n){ listnode* head=(listnode*)malloc(sizeof(listn...
2020-03-23 00:26:49
1204
原创 求大神解答 数据结构 二叉树排序 C语言
我这样写出来运行中序打印是没有内容的,请问这是哪里错了/*假设K1,K2....KN是N个关键字(字符型),使用二叉排序树表示这些关键词。1.中序遍历*/#include <stdio.h>#include <stdlib.h>typedef struct binode{ char data; struct binode* lchild,* rchild...
2020-03-23 00:19:05
185
原创 求大神帮忙看一下 为什么出现“wrong answer” 数据结构链表
#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));...
2020-03-23 00:16:31
334
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人