花落的新手代码(C) 摘要:解题思路:注意事项:参考代码#include<stdio.h> #include<stdlib.h> #include<ctype.h> #include<string.h> #define …… 题解列表 2018年02月28日 0 点赞 0 评论 2058 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.8 (C语言代码)链表的建立、排序、插入 摘要:解题思路:先保存两条链表,然后对A链表排序,再将B链表逐个插入A链表。注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct stu{ …… 题解列表 2018年02月19日 1 点赞 0 评论 2079 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h> typedef struct students{ int num ; int score; …… 题解列表 2018年02月05日 0 点赞 0 评论 1522 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<malloc.h>typedef struct LNode{ int no; …… 题解列表 2017年12月28日 2 点赞 0 评论 1530 浏览 评分:0.0
优质题解 Manchester- C语言程序设计教程(第三版)课后习题11.8(链表创建,插入,连接) 摘要:解题思路:1.先设计个结点,包括学号,成绩,后继指针;2.输入a,b,程序中为n,m;3.分别创建长度为n的链表,和长度为m的链表;4.把两个链表连为一个,用选择排序法排序;5.输出,边输出,边释放结…… 题解列表 2017年12月22日 53 点赞 34 评论 16917 浏览 评分:9.7
WU-C语言程序设计教程(第三版)课后习题11.8 (C语言代码)(结构体实现) 摘要:参考代码:#include<stdio.h> #include<malloc.h> typedef struct student { int number; int data; st…… 题解列表 2017年12月12日 7 点赞 0 评论 1998 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.8 (C语言代码) 摘要:解题思路:链式排序不是那么好弄。。所以用了交换注意事项:参考代码:/*lb*/ #include<stdio.h> #include<stdlib.h> typedef struct stude…… 题解列表 2017年11月01日 3 点赞 1 评论 1264 浏览 评分:8.4
C语言程序设计教程(第三版)课后习题11.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct{ int a,b; }stu[100],stu1; int main(){ int n,m,i,j; …… 题解列表 2017年10月22日 1 点赞 0 评论 1673 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct tickes{ int num; int grade;}ticke1[1000]={0},ticke2[1000]={0}…… 题解列表 2017年09月28日 2 点赞 0 评论 1360 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;struct student{ int num; …… 题解列表 2017年08月26日 0 点赞 0 评论 1279 浏览 评分:0.0