10 2019 档案
摘要:源代码: #include <stdio.h>#include <stdlib.h> typedef struct tnode{ int id; int score; struct tnode *lchild,*rchild;}stu; void ins_student(stu **p,long i
阅读全文
摘要:// // main.cpp // numtochar // // Created by duanqibo on 2019/10/15. // Copyright © 2019年 duanqibo. All rights reserved. // #include <iostream> #defin
阅读全文
摘要:源代码 #include <stdio.h>#include <stdlib.h>#include <malloc.h>#define MAXSIZE 100 //定义单链表typedef struct node{ int data; struct node *next;}linklist;link
阅读全文