主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
搜索
推 荐
择校分析
笔经面经
学习交流
我要提问
站内公告
调剂专题
精彩爆料
解题报告
C语言 1115
读下列程序,写出程序的输出结果。
我爱陈少熙
回复 9+
|
赞 0
|
浏览 15.2k
15
C语言 1057
程序运行结果
傲娇蟹
回复 9+
|
赞 0
|
浏览 20.7k
1
P1856
字符串删除 题解:C
小王桐学
回复 0
|
赞 0
|
浏览 643
#include <stdio.h> #include <string.h> //字符串匹配 int StringMatch(char *S1,char *S2,char *S3) { int i = 0,j,k = 0,l,count = 0; ...
P1091
促销计算 题解:c/c++
hellokitty1679
回复 0
|
赞 5
|
浏览 466
#include <bits/stdc++.h> using namespace std; int main(void) { double n; while(scanf("%lf&quo...
P1461
反序相等 题解:
Amberqwe
回复 2
|
赞 0
|
浏览 542
为啥在其他测试通过,这个不通过 #include <stdio.h> #include <string.h> int main() { for (int i = 1000; i < 1200;...
P1102
素数判定 题解:C
小王桐学
回复 0
|
赞 0
|
浏览 518
#include <stdio.h> #include <math.h> int isPrimary(int n) { int i; for(i = 2; i <= sqrt(n); i++) if(n % i == 0) brea...
P1132
c-主要学会%g的使用
零壹
回复 0
|
赞 4
|
浏览 3.7k
%g用来输出实数,它根据数值的大小,自动选f格式或e格式(选择输出时占宽度较小的一种),且不输出无意义的0。即%g是根据结果自动选择科学记数法还是一般的小数记数法 printf("%g\n", 0.00001234); &nb...
P1320
统计字符 题解:C
lingdongyang
回复 2
|
赞 0
|
浏览 787
char s[10]; char ss[105]; int main() { while (gets(s)!=NULL) { if (strcmp(s,"#") == 0) {//字符串相比较 break;//比较是否输出#从而结束 } gets(ss...
P1126
生化武器 题解:经典bfs
damowanghwj
回复 0
|
赞 1
|
浏览 783
#include <iostream> #include<cstdio> #include<string> #include<queue> #include<cstring> using namespace std; ...
P1254
字符串排序 题解:简简单单
1576684866
回复 0
|
赞 0
|
浏览 680
using namespace std; #include <string.h> #include <algorithm> #include <iostream> int main() { char s[100...
P1029
骨牌铺方格 题解:dp
xjnotywlq
回复 0
|
赞 0
|
浏览 538
#include <stdio.h> #include <stdlib.h> int n; int dp[10000005]; int main() { dp[1]=1; dp[2]=2; dp[3]=4; ...
P1647
北邮2019 二进制 题解:纯C,注意如上溢,则总共输出33位,进位的1不能扔掉
红色线条
回复 0
|
赞 1
|
浏览 922
#include<stdio.h> #include<math.h> int main() { int T; long long sum,tmp; &nbs...
操作系统
【2009年】408计算机统考真题模拟考试 - 第45题答案笔记
kisixing
回复 0
|
赞 0
|
浏览 205
semaphore N empty full p1{ produce() mutex(n) v(N) mutex(n) }
P1912
循环位移 题解:C
小王桐学
回复 0
|
赞 0
|
浏览 802
不动两字符串, 直接判断。 #include <stdio.h> #include <string.h> int main() { char s1[1000],s2[1000]; gets(s1); gets(s2); if(strl...
P1448
充分利用容器特性
yanmy
回复 0
|
赞 0
|
浏览 605
#include <iostream> #include <map> #include <vector> #include <set> using namespace std; int main() { int m; ...
P1412
写复杂了
可可爱爱草莓派
回复 0
|
赞 0
|
浏览 1.3k
#include<bits/stdc++.h> using namespace std; struct Big{ string num; int len; }big[110]; bool cmp(Big a,Big...
P1015
单链表 题解:c 解决
orderrr
回复 0
|
赞 0
|
浏览 855
#include <stdio.h> #include <malloc.h> #include <stdlib.h> struct Node { int Element; // 节点中的元素为整数类型 stru...
P1015
单链表 题解:
熹微
回复 0
|
赞 0
|
浏览 681
C语言 边输入一个数据边进行链表插入 了解一下 #include<stdio.h> typedef struct Node{ int num; struct Node *Next; }node; i...
P1020
最长连续因子 题解:
gzulianxisheng
回复 0
|
赞 0
|
浏览 461
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; ...
计算机网络
【2015年】408计算机统考真题模拟考试 - 第47题答案笔记
tohkachan
回复 0
|
赞 0
|
浏览 144
1、子网地址为111.123.15.0/24,共有254个主机地址,由于已经分配了前4个地址, 因此主机2~主机N可分配的最大范围是111.123.15.5~111.123.15.254 DHCP发现报文的源IP地址是0.0.0.0,目的IP地址是255.255.255.255 ...
P1013
判断素数 题解:为什么只通过60%呢 请找出错误输入 谢谢!
A001
回复 4
|
赞 0
|
浏览 801
#include<iostream> using namespace std; int main(){ int n; cin>>n; int flag=0; &n...
P1445
直角三角形 题解:
xcc7777776686
回复 0
|
赞 0
|
浏览 369
#include<stdio.h> #include<math.h> #include<stdlib.h> #include<stdbool.h> int main(){ int x1,x2; &...
P3502
密码的翻译 题解:
1071512987
回复 0
|
赞 0
|
浏览 488
Java题解:本题对于ASCII码和char字符的考察相当不错,适合初学者。 注意题目说:多组输入,因此最外层要套一个while判断 import java.util.Scanner; public class Main { public s...
P1027
为什么oj上可以ac,vs2022上显示string溢出
周小黑02477
回复 1
|
赞 0
|
浏览 635
#include<stdio.h> #include<string> #include <stdlib.h> #include<iostream> #include<string.h> using namespace s...
P1062
杨辉三角形 题解:
zxjrheaven
回复 0
|
赞 0
|
浏览 828
#include <stdio.h> //思路:定义一个大数组,第一列和对角线都1,然后从这两个线下面不是1的地方开始 //数等于上面的+左上的,就可以了。 int main() { int num[21][21]={0}; ...
数据结构
【2018年】408计算机统考真题模拟考试 - 第42题答案笔记
one1to
回复 0
|
赞 0
|
浏览 196
1.16 2.邻接矩阵或邻接多重表,prim算法和kruskal算法 3.kruskal算法构建的可以,prim算法的不行
我要提问
软工求解
我爱陈少熙
回复 1
|
赞 0
|
浏览 1.4k
数据流图中不是没有控制流吗
经验总结
机试如何才能快速提高?
admin
回复 0
|
赞 50
|
浏览 36.4k
最近发现少部分同学们学习进入了误区,机试是一门实践性很强的科目。就好比大家小时候学习练字一样,刚开始我们都需要一套书法进行临摹,照着别人的字进行模仿,不断写直到把常用的字都熟练为止。而有少部分同学练第一个字就开始迷糊,今天学习了楷书的这个字,明天看到草书的这个字又跑...
P1034
水仙花数 题解:
lingdongyang
回复 0
|
赞 5
|
浏览 885
#include<stdio.h> int main() { int m, n; while (scanf("%d %d", &m, &n) != EOF) { if (m == 0 && n == 0) { break;...
综合
1185 全排列
酷酷兔
回复 0
|
赞 0
|
浏览 1.5k
#include <bits/stdc++.h> #define rep(i, s, e) for (int i = s; i < e; i++) using namespace std; string s; // 输入的字符串 vector<bool&...
P1000
C++
光明守护神
回复 0
|
赞 0
|
浏览 692
#include<bits/stdc++.h> using namespace std; int main() { auto a=1000000000*2; auto b=a; cin>>a>>b; cout<<a+...
江南大学
江南大学人工智能与计算机学院2024年硕士研究生调剂公告
调剂小助手
回复 0
|
赞 0
|
浏览 428
各位考生: 为方便考生申请调剂报考,现将学院2024年预计接收调剂考生的有关事项通知如下: 一、接收调剂专业 招生学院 专业代码 专业名称 ...
P1025
链表合并 题解:
1576684866
回复 0
|
赞 0
|
浏览 667
#include <cstdio> using namespace std; #include <string.h> #include <iostream> #include <stdlib.h> typedef struct node...
综合
【2023计算机考研】初试C程序设计的院校汇总
admin
回复 3
|
赞 3
|
浏览 11.3k
PS:学校具体考研信息在院校信息中输入学校名称搜索可查看 传送门:https://noobdream.com/schoollist/ 专硕 北京印刷学院 首都师范大学 首都经济贸易大学 北京联合大学 河北工程大学 河北地质大学 太原...
备考笔记
279. 完全平方数
酷酷兔
回复 0
|
赞 0
|
浏览 2.0k
class Solution { public: int numSquares(int n) { vector<int> f(n + 1); for (int i = 1; i <= n; i++) { ...
操作系统
【2024年】408计算机统考真题模拟考试 - 第46题答案笔记
xzy123456
回复 0
|
赞 0
|
浏览 176
(1)是。因为对缓冲区的访问需要做到互斥访问,所以C1的代码是临界区。 (2)semaphore S=0;//同步信号量 P1(){ 执行C1; V(S); } P2(){ P(S); 执行P2; } (3)semaphore mut...
P1701
非素数个数 题解:
Pstary
回复 0
|
赞 2
|
浏览 1.4k
#include<stdio.h> #include<string.h> #include<stdbool.h> #include<math.h> #define N 10000000 /* 埃拉托斯特尼筛法是一种用于找出一定...
P1461
反序相等 (C++)题解:
我与代码的故事
回复 0
|
赞 2
|
浏览 536
#include<bits/stdc++.h> using namespace std; bool cheak(int x) { string num = to_string(x); reverse(num.begin(), num.end()); ...
P1045
平方和与倒数和 题解:
活着的传奇
回复 0
|
赞 1
|
浏览 820
#include<bits/stdc++.h> using namespace std; int main(){ int a;float b,c; cin>>a>>b>>c; float s=0; for(int i=1;i&...
P1212
平方和与立方和 题解:
huanghu
回复 0
|
赞 0
|
浏览 533
#include<iostream> using namespace std; int main(){ int m,n; while(cin>>m>>n){ int sumji = 0; int sumou = 0; i...
计算机组成原理
【2012年】408计算机统考真题模拟考试 - 第44题答案笔记
zard
回复 0
|
赞 0
|
浏览 153
feff 8 数据为准备好不能姨妈取数 I4 因为I3的IF被占用了所以不能IF
计算机网络
【2024年】408计算机统考真题模拟考试 - 第47题答案笔记
673810319
回复 0
|
赞 0
|
浏览 259
OSPF 16 90 OPEN UPDATE IGP R11 R15
操作系统
【2016年】408计算机统考真题模拟考试 - 第47题答案笔记
tohkachan
回复 0
|
赞 0
|
浏览 214
1、dir和dir1都是目录文件 其中dir的内容是dir1 48 dir1的内容是file1 100 file2 200 2、2B有16位,能表示簇有64K个,则FAT的最大长度是6K*2B=12KB,支持的最大文件长度是64K*4KB=256MB ...
P1011
P1011 日期 答疑提问:
xidianshangan
回复 1
|
赞 1
|
浏览 140
benben 本地跑答案没问题,但是在这个上面跑答案就不一样 很奇怪
P1296
括号匹配问题 题解:c语言 解决,帮我看看就对了66percent
orderrr
回复 0
|
赞 0
|
浏览 549
#include <stdio.h> #include <string.h> int main() { char s[105]; while (scanf("%s", s) != EOF) { // 用栈存 没有匹配的左括号的...
综合
前缀树
酷酷兔
回复 0
|
赞 0
|
浏览 708
public class Code02_TrieTree { private Node root; public Code02_TrieTree() { this.root = new Node(); } ...
华东师范大学
2020华东师大399分上岸软件学硕经验分享
峰峰
回复 0
|
赞 2
|
浏览 8.0k
大家好,首先我先简单介绍一下自己。我是江苏某双非的通信工程专业,参加了2020年硕士研究生考试,目前已经录取华东师范大学软件工程学硕。初试399分,其中政治75分,英一76分,数二128分,408计算机综合120分,排名第一;复试424分,总成绩406.5分,总排名第一。 ...
P1024
核心思路:创建两个数组(元素相同),来模拟匹配过程
sincerely_LM
回复 0
|
赞 3
|
浏览 8.5k
#include <iostream> #include <algorithm> using namespace std; //核心思路,创建两个相同的数组来模拟匹配过程。二重循环遍历两组数组,但是要注意对相同元素的处理 int main(int arg...
计算机组成原理
【2021年】408计算机统考真题模拟考试 - 第44题答案笔记
673810319
回复 0
|
赞 0
|
浏览 185
高18 低12 高15位 中间3位 4 LRU 增加2位
P1006
字符串翻转 题解:reverse()函数
FCC
回复 0
|
赞 0
|
浏览 613
#include <bits/stdc++.h> using namespace std; int main(){ string s; cin >> s; reverse( s.begin(), s.end() ); //字符串迭代器 c...
计算机组成原理
【2018年】408计算机统考真题模拟考试 - 第44题答案笔记
jdaijda666666
回复 0
|
赞 0
|
浏览 206
(1)28位 (2)全相联映射;SRAM; (3)2路组相联映射;替换算法控制位;558字节; (4)0040040H; &...
P1387
查找 - 北邮 题解:过了,替换长度可能不一样,用到了string的erase函
LHXLLLLL
回复 1
|
赞 0
|
浏览 955
#include<bits/stdc++.h> using namespace std; void reverse(string &s, int begin, int end) { for (int i = begin, j = end; i...
综合
1308 逃离迷宫2
酷酷兔
回复 0
|
赞 1
|
浏览 724
#include <iostream> #include <cstdio> #include <cstring> #include <queue> using namespace std; #define inf 0x3f3f3...
P1091
C_用if语句实现
nooknook
回复 0
|
赞 1
|
浏览 7.9k
#include<stdio.h> #define A 0.95 #define B 0.90 #define C 0.85 #define D 0.80 int main() { double x; while (scanf("%lf", &x) ...
操作系统
【2009年】408计算机统考真题模拟考试 - 第46题答案笔记
学不完了咋办
回复 0
|
赞 0
|
浏览 136
(1):10ns+100ns+100ns; 10ns+100ns+10^8ns+10ns+100ns; 10ns+100ns (2)101565H (没毛病好吧)
P1002
数字统计 题解:
小酒
回复 0
|
赞 0
|
浏览 664
1002解题思路 #include <bits/stdc++.h> using namespace std; int main() { int n,m,w;  ...
P1027
删除字符串2 题解:暴力法hh
damowanghwj
回复 1
|
赞 0
|
浏览 733
#include<cstdio> #include<iostream> #include<string> using namespace std; int main(){ string str; cin >> ...
P1422
80%的没用long。m转10,10转n。
光明守护神
回复 0
|
赞 0
|
浏览 605
#include <cmath> #include <iostream> #include <vector> using namespace std; /*m进制转十进制*/ long m_to_ten(int m, string s) ...
P1177
查找学生信息 题解:C++
15240928957
回复 0
|
赞 0
|
浏览 591
#include <iostream> #include <stdlib.h> #include <map> using namespace std; int a[1005]; int main() {  ...
数据结构
【2024年】408计算机统考真题模拟考试 - 第41题答案笔记
任小tiao
回复 0
|
赞 0
|
浏览 286
(1)判别是否有唯一的拓扑序列,就是不断选取入度为0的点,若存在且该入度为0的点唯一,则有唯一的归并序列 bool check(MGraph G){ int visit[MAXV]; for(int i=0;i<MAXV;i++){ vis...
P1567
最大受欢迎程度及采购方案均可以利用动态规划求解
Dear_Mr_He
回复 0
|
赞 3
|
浏览 5.8k
#include<iostream> #include<cstring> #include<vector> using namespace std; // 可以支配的钱数、清单上可选择的物品种类、输入物品的价格、输入物品的受欢迎程度、状态转移...
计算机组成原理
【2021年】408计算机统考真题模拟考试 - 第44题答案笔记
riechan
回复 0
|
赞 0
|
浏览 273
1)高18位表示虚页号,低12位表示页内地址 2)高15位标记,低3位是组号 3)虚页号4被换出,因为其余几页都恰好被分配到各自TLB组且占用空间没有大于两路 唯有组号为100B的12,4,12,20页超出2路范围,采用LRU替换策略,最近最长未访问的是4号页,因此4号页被换...
我要提问
1102 素数判定
yanmo
回复 2
|
赞 0
|
浏览 507
#include<bits/stdc++.h> using namespace std; //线性素数筛选,prime[0]存储素数个数 const int maxn=1000000+5; int prime[maxn]; void getprime(){ ...
P1551
判断二叉树是否对称 题解:新手方法 易于理解
孙某人
回复 1
|
赞 3
|
浏览 970
#include <iostream> #include<string.h> #include <math.h> using namespace std; int main(){ char a[1005]; for(int i=0;i&l...
数据结构
【2012年】408计算机统考真题模拟考试 - 第41题答案笔记
tohkachan
回复 0
|
赞 0
|
浏览 211
1、根据哈夫曼树原理,构建成 总比较次数为45-1+85-1+110-1+195-1+395-1=825 2、假设每个表中的数据元素个数代表其权重,则按过程 1、取出权重最小的两个升序表,进行合并,合并后的升序表的权重为两个的总和 不断重复该过程,最终全部合并 &...
P1221
旋转矩阵 题解:简单粗暴的解法
Jackeens
回复 0
|
赞 4
|
浏览 727
两个矩阵交替使用,避免每次操作使用修改后的元素带来错误。 flag==1,当前使用ans1矩阵,flag==2,当前使用ans2矩阵。 三个操作都很简单,找规律就行。 #include<cstdio> using namespace std; int ans1[1...
P1159
成绩排序2.0 题解:
ccccccyes
回复 0
|
赞 1
|
浏览 540
//07/09/24 21:00 // #include <iostream> #include <algorithm> using namespace std; struct student{ int p; int q; ...
操作系统
【2019年】408计算机统考真题模拟考试 - 第44题答案笔记
riechan
回复 0
|
赞 0
|
浏览 263
1)512B*200*10*300=307200000B 2)簇号0-99 盘面号0-9 柱面号0-299 柱面号,盘面号,扇区号 100260 柱面号100 60005 柱面号60 110560 柱面号110 先后顺序为...
P1259
python求解
落翼
回复 1
|
赞 0
|
浏览 3.4k
通过python的int函数直接转换: while True: try: num = input() num = int(num, 16) print(num) except: break ...
操作系统
【2018年】408计算机统考真题模拟考试 - 第45题答案笔记
673810319
回复 0
|
赞 0
|
浏览 260
01806008 物理地址,会,不会 线程共享进程资源 访问位,修改为
P1883
达到回文数 题解:
zxd12363
回复 0
|
赞 0
|
浏览 272
#include<bits/stdc++.h> using namespace std; int main() { string s; int count = 0;  ...
P1170
完数VS盈数 题解:简单好懂的办法
FIVEszc
回复 0
|
赞 0
|
浏览 452
#include <bits/stdc++.h> using namespace std; int main() { int num=2; int E[3],G[15],j=0,k=0; for(;num<=60;num++) { int...
首都师范大学
首都师范大学2024年硕士研究生调剂公告
调剂小助手
回复 0
|
赞 0
|
浏览 633
一、接收调剂专业及要求 我校部分专业可接收调剂生,具体专业信息及调剂考生第一志愿专业范围等基本要求详见附件。此外,调剂考生初试成绩须符合第一志愿报考专业国家A类考生初试成绩基本要求,并符合调入我校相关专业的报考条件。计划余额以我校各专业在“中国研究生招生信息网”(...
P5132
车厢的重组 题解:
799
回复 0
|
赞 0
|
浏览 599
#include <bits/stdc++.h> using namespace std; int main() { //本质就是一个冒泡排序 int a[1005]; int ...
P1474
大整数加法 题解:C题解easy
小王桐学
回复 0
|
赞 0
|
浏览 694
#include <stdio.h> #include <string.h> int flag; void Sum(char *s1,char *s2) { int n = strlen(s1)-1; while(n >= 0) {...
P1417
八进制 题解:
Liinsy
回复 2
|
赞 0
|
浏览 603
为什么vs可以通过家人们? #include<stdio.h> int main() { int n; int a[100]; whi...
P1022
删除最大最小数 题解:易错点总结
孙某人
回复 0
|
赞 0
|
浏览 882
#include <iostream> #include <string.h> #include <math.h> using namespace std; int main(){ int n; cin >>n; in...
P1009
随机数 题解:挑战最短代码
williams
回复 5
|
赞 5
|
浏览 1.5k
#include <stdio.h> int main(){ printf("210"); }
P1383
查找第K小数 题解:c++ map方法
小李122333
回复 0
|
赞 2
|
浏览 701
#include <bits/stdc++.h> using namespace std; int main(){ int n,x,k,count; while(cin>>n){ count = 0; ma...
P1003
翻转数的和 题解:
查贝
回复 0
|
赞 0
|
浏览 613
#include<stdio.h> #include<stdlib.h> /* 输入为多组测试数据,每行一组,包含两个整数A、B,两数中间以空格分隔 0<A<100 000 000,0<B<100 000 000 */ int rev...
P1544
合并果子 题解:
DestinyCares+++
回复 0
|
赞 0
|
浏览 864
#include<bits/stdc++.h> using namespace std; int main(){ priority_queue<int,vector<int>,greater<int>&g...
P1024
二元组整数 题解:
linlan
回复 0
|
赞 0
|
浏览 719
很好理解的一个方法(排序、寻找合适的答案、去重即可) v:存放输入数据 x:存放当前二元组数对 答案字典序输出:先对v进行排序 使用两层循环,当i!= j时(即不是同一个元素),把当前二元组数对放入x中 最后对x进行排序,因为erase去重函数:是对相邻元素的去重...
操作系统
【2010年】408计算机统考真题模拟考试 - 第46题答案笔记
zard
回复 0
|
赞 0
|
浏览 149
1 5h 2 1fca 3 0bca
P1172
最大序列和 题解:全改为long long
xjnotywlq
回复 0
|
赞 0
|
浏览 791
#include <stdio.h> #include <stdlib.h> long long n; long long a[100000]; long long dp[100000]={0}; long long max(long long a ,lo...
P5105
集合中的相同元素 题解:数据量比较小,用好几个数组实现
勋谦
回复 0
|
赞 0
|
浏览 442
#include <iostream> #include <string.h> #include <algorithm> using namespace std; const int N = 1e5 + 10; int a[N],b[N...
P1025
链表合并 题解:
熹微
回复 0
|
赞 0
|
浏览 524
每日一题 c语言 #include<stdio.h> typedef struct Node{ int num; struct Node *Next; }node; void Meg(node ...
P1355
素数判定 - 哈尔滨工业大学 题解:
huanghu
回复 0
|
赞 0
|
浏览 467
#include<stdio.h> #include<iostream> using namespace std; bool sushu(int n){ for(int i = 2 ; i<n ;i++){ if(n%i==0){ ...
P1426
最大公约数1 题解:C
小王桐学
回复 0
|
赞 0
|
浏览 515
#include <stdio.h> int MaxCommon(int a,int b) { int i = 1,max = 1; while(i <= a) { if(a % i == 0 && b % i == 0) ...
P1281
用 操作数栈+运算符栈 解决中缀表达式计算问题
xx_about123456
回复 0
|
赞 3
|
浏览 4.8k
思路: 两个栈,操作数栈和运算符栈 当扫描到操作数,压入操作数栈 当扫描到运算符,则比较当前字符优先级,和运算符栈顶元素的优先级,如果栈顶的优先级高,需要先运算,应该弹栈运算,直到当前运算符的优先级高,将当前字符压入栈 每弹出一个运算符,操作数栈应该弹出2个数,进行运算...
P1430
阶乘 - 北理工 题解:C
小王桐学
回复 0
|
赞 0
|
浏览 503
#include <stdio.h> long long Factorial(long long n) { long long i,f = 1; for(i = 1; i <= n; i++) f*=i; return f; } int ...
P1474
大整数加法 题解:
AA蚊
回复 0
|
赞 2
|
浏览 730
#include<iostream> #include<string> #include<sstream> using namespace std; void main(){ string s1,s2;//字符串存数 &nbs...
P1151
成绩排序 题解:数据率百分66时,检查while(cin>>n)
红毛舒肤佳
回复 0
|
赞 0
|
浏览 641
#include <bits/stdc++.h> using namespace std; struct student{ string name; int score; }; bool Cmpdesc(student a,student b){//...
P1015
单链表 题解:小伙伴们可以帮我检查一下哪里有问题吗?0%
为欢几何
回复 2
|
赞 0
|
浏览 651
#include<bits/stdc++.h> using namespace std; struct Node { int Element; // 节点中的元素为整数类型 struct Node * Next; //...
数据结构
【2016年】408计算机统考真题模拟考试 - 第42题答案笔记
riechan
回复 0
|
赞 0
|
浏览 247
1)m个非叶节点,表示度为k的结点有m个,假设度为0(即叶结点)个数有x个 则x+m-1=m*k的到x=m*(k-1)+1 2)T结点最多为满k叉树的情况 1层k^0个结点、2层k^1个结点,则h层有k^{h-1}个结点,总共1+k+k^2+...+k^{h-1}=k^h-1...
操作系统
【2019年】408计算机统考真题模拟考试 - 第44题答案笔记
tohkachan
回复 0
|
赞 0
|
浏览 163
1、共有300 * 10 * 200=600000个扇区,则容量为0.6M * 512B=307200000B 2、簇号为100260,每个柱面可以存储1000个簇区,则该簇号在100260/1000=100号柱面上 同理60005,在60号柱面上,101660在101号柱面上, ...
数据结构
【2009年】408计算机统考真题模拟考试 - 第41题答案笔记
riechan
回复 0
|
赞 0
|
浏览 154
不行,正确的方案应该是每次选择离当前顶点集合最近的边加入到最短路径中 只要列出一个距离u,v最近的边,但这条边并不与v直接相连的反例即可
数据结构
【2023年】408计算机统考真题模拟考试 - 第41题答案笔记
jdaijda666666
回复 0
|
赞 0
|
浏览 423
(1)统计所有顶点的出度和入度,若存在边(i,j),G.Edge[i][j]=1, 顶点i的出度,定点j的入度均+1;否则,出度,入度均不变。 (2)int printVertices(MGraph G){ int indegrees[G.n...
P1015
1015单链表(注释详细)
wordC
回复 0
|
赞 3
|
浏览 11.4k
#include <stdio.h> #include <malloc.h> //定义单链表结点 typedef struct node{ //这里用使用typedef定义新的数据类型 int data;//数据域 struct no...
我要提问
请各位大佬帮我看看哪里出错了-1375
LJC27
回复 1
|
赞 0
|
浏览 390
#include<bits/stdc++.h> #include<algorithm> #include<cmath> using namespace std; bool prime(int n) { int flag = ...
P1390
不合并符串
yanmy
回复 0
|
赞 0
|
浏览 500
#include <iostream> #include <string> using namespace std; int main() { string a, b; while (cin >> a >> b) ...
P1347
思路解析与代码实现(相对精简,参考了前辈们的题解)
Kohi
回复 0
|
赞 2
|
浏览 636
已知油箱初始为空,设有 n 个加油站(按距起点由近到远排序,编号 1...n)。则 no.1 必然要在起点,车才能出发。再令终点为 no.n+1。 假设在 no.i 加满油,到达 no. i+1 时,会消耗掉 from i to i+1 这段距离对...
P1437
日期类(模拟) 题解:
我与代码的故事
回复 0
|
赞 1
|
浏览 565
#include<bits/stdc++.h> using namespace std; int month[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int n; int y, m, d; ...
我要提问
全站热榜
1
无法正确通过题目都是哪些原因造成的?
2
N诺成就值出炉,帮你一眼识别大神
3
机试如何才能快速提高?
4
[置顶]计算机考研择校分析【25考研必读】
5
【23计算机考研】39所985院校录取分数线汇总
6
【2023计算机考研】211院校录取分数线汇总
7
广度优先搜索计算每个人移动到每个位置需要去掉障碍物的最少数目,最后求和的最小值
8
A+B问题 题解:C
9
1377旋转矩阵
10
详细题解(站在巨人的肩膀上)