客观题: 1、已知无向图 G 如下所示,使用克鲁斯卡尔(Kruskal)算法求图 G 的最小生成树,加入到最小生成树中的边依次是: A、(b,f), (b,d), (a,e), (c,e), (b,e) B、(b,f), (b,d), (b,e), (a,e), (c,e) C、(a,e), (b, ...
分类:
其他好文 时间:
2020-06-18 21:33:29
阅读次数:
452
2020年司法考试各科目老师推荐及机构总结: 刑法:柏浪涛 --柏杜社 民法:钟秀勇 --瑞达 刑诉:左宁 --众合 民诉:戴鹏 --众合 行政:李佳 --众合 三国:杨帆 --瑞达 理论:杜洪波 --柏杜社 商经:鄢梦萱 --厚大 司法考试卷号考试日期考试时间 各卷科目 客观题 试卷一 9月5日、 ...
分类:
其他好文 时间:
2020-01-27 19:29:21
阅读次数:
1215
本套试题的客观题和应用题选自2019年408真题,就是我们都考过的那张卷子,但是从来没有对过答案,简答题选自其它正规考试的试题 一、客观题 1. OSI参考模型的第5层(自下而上)完成的主要功能是( ) A. 差错控制 B. 路由选择 C. 会话管理 D. 数据表示转换 2. 100BaseT快速以 ...
分类:
其他好文 时间:
2020-01-10 15:27:17
阅读次数:
96
#include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; ...
分类:
其他好文 时间:
2020-01-01 00:00:59
阅读次数:
97
#include <stdlib.h>#include <string.h>const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; char name[20]; float ...
分类:
其他好文 时间:
2019-12-29 23:22:09
阅读次数:
100
#include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; ...
分类:
其他好文 时间:
2019-12-29 12:43:35
阅读次数:
47
#include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; ...
分类:
其他好文 时间:
2019-12-28 00:04:21
阅读次数:
113
// 从文本文件file1.dat中读取数据,找出最高分和最低分学生信息,并输出在屏幕上 #include <stdio.h> #include <stdlib.h> #define N 10 // 定义一个结构体类型STU typedef struct student { int num; cha ...
分类:
其他好文 时间:
2019-12-25 20:20:38
阅读次数:
63
#include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int score; ...
分类:
其他好文 时间:
2019-12-24 14:07:41
阅读次数:
67
Part1: 结构体类型及编程应用 1-2 题目描述学生成绩信息包括学号、姓名、考试课程、平时成绩、期中成绩、期末成绩、总评成绩和等级(优: 90-100、良:80-89、中:70-79、及格:60-69、不及格:<60)。 建立一个描述学生某科成绩的数据类型,其中总评成绩=平时成绩×20%+期中成 ...
分类:
其他好文 时间:
2019-12-18 17:41:51
阅读次数:
103