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 阅读全文
posted @ 2019-10-31 11:01 bobo哥 阅读(1765) 评论(0) 推荐(0) 编辑
摘要:// // main.cpp // numtochar // // Created by duanqibo on 2019/10/15. // Copyright © 2019年 duanqibo. All rights reserved. // #include <iostream> #defin 阅读全文
posted @ 2019-10-17 16:35 bobo哥 阅读(943) 评论(0) 推荐(0) 编辑
摘要:源代码 #include <stdio.h>#include <stdlib.h>#include <malloc.h>#define MAXSIZE 100 //定义单链表typedef struct node{ int data; struct node *next;}linklist;link 阅读全文
posted @ 2019-10-10 10:53 bobo哥 阅读(3273) 评论(0) 推荐(0) 编辑