主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
讨论区
兑换中心
登录
注册
上岸
搜索
推 荐
择校分析
笔经面经
学习交流
我要提问
站内公告
调剂专题
精彩爆料
解题报告
C语言 1171
若有定义:int i ,j;则表达式(i=2, j=5, i++, i+j++)
abobb
回复 9+
|
赞 0
|
浏览 12.6k
i = 2: i 被赋值为 2。 j = 5: j 被赋值为 5。 i++: i 先参与运算,值为 2,然后自增为 3。 i + j++: 计算 i + j,此时 i = 3 和 j = 5,结果为 8。 然后 j 自增为 6。 所以,整个表达式的值是 8。
计算机组成原理 1024
系统总线按传输信息的不同分为__________、________、______
飞天小象528
回复 9+
|
赞 0
|
浏览 6.7k
数据总线,地址总线控制总线
P1478
喝饮料 题解:
可可爱爱草莓派
0
0
分享
#include<bits/stdc++.h> using namespace std; struct Drink{ double mi,wi;//mi毫升,价格为wi }dk[1010]; bool cmp(Drink a,Drink b){...
P1009
随机数 题解:
ccccccyes
0
0
分享
//?? //实际上是1加到20 #include <iostream> using namespace std; int main(){ int sum = 0; for(int i = 1; i<=20; i++) sum +=...
P1477
动态查找问题 题解:
可可爱爱草莓派
0
0
分享
#include<bits/stdc++.h> using namespace std; int main(){ int n,q; while(cin >> n){  ...
P1473
字符棱形 题解:
ccccccyes
0
0
分享
多一行空格,不改了 //应该就是中间的是n+2 //这里是2n-1是总行数,不是最大的*数 //n是啥,n只是平行四边形的边长 #include <iostream> using namespace std; int main(){ int n,nu...
P1492
三叉树 题解(小白易懂版):
致敬大佬
0
0
分享
#### 我将这道题拆解为两个部分,第一部分是找到根节点到目标叶子节点的路径(dfs),第二部分由于要求叶子节点间的路由,所以就要合并一下第一部分得到的路径(我这里是直接找到了分界点下标,依次遍历),当然,这种方法虽然思想简单,但是肯定不是最优的。下面是完整代码: #include ...
P1737
骑车
xx_about123456
0
2
分享
如果a[i]>a[i-1] 保持递增 dp[i]=dp[i-1]+1; 否则, 重新计算爬坡,dp[i]=1; 当前坡度计算:a[i]- a[i-dp[i]+...
P1310
奥运排序问题 题解:
ottata
0
3
分享
思路:有多少个比自己大的(如m),自己排序第m+1。 #include <bits/stdc++.h> using namespace std; struct country { int gold, award, people; double ...
P1394
纯纯逆天测试例(‘.'前有可能是空格)
周小黑02477
3
2
分享
#include<bits/stdc++.h> using namespace std; int main() { string s; while (getline(cin,s)) { int len = s.length(); int cou...
P1508
奇怪的数列 题解:C
hellokitty1679
0
0
分享
#include<stdio.h> int main(void) { int N,m=1; scanf("%d",&N); f...
P1264
二叉树2 题解:
ccccccyes
0
0
分享
//完全二叉树,补充n来判定最大值 //查找2n和2n+1 //递归 #include <iostream> using namespace std; int calcu(int m,int n){ if(m>n) return 0...
P1352
众数 题解:挑战更新python题解
孙某人
0
0
分享
while True: try: line = [0]*11 line[0] = 0 list1 = list(map(int,input().split())) for i in range(0,20): ...
P1248
整数奇偶排序 题解:
ccccccyes
0
0
分享
//07/09/24 21:15 //07/09/24 21:27 #include <iostream> #include <vector> #include <algorithm> using namespace std...
P1387
比较笨
可可爱爱草莓派
0
0
分享
#include<bits/stdc++.h> using namespace std; string op1(string op,string sss){//翻转 int n = sss.size(); int i ...
备考心情
放苹果
酷酷兔
0
0
分享
#include <stdio.h> #include <string.h> int f(int m, int n); int main() { int m, n; while (scanf("%d %d", &m, &...
P1176
十进制和二进制 题解:
myming
0
0
分享
#include <bits/stdc++.h> using namespace std; // 将十进制字符串转换为二进制字符串 void decimalToBinary(char a[], char binary[]) { int len...
P1836
记录最长递减子序列
xx_about123456
0
3
分享
最长递减子序列不唯一,题目的意思应该是输出从左往右第一个符合条件的序列 通过dp数组,可以得出最长递减子序列的长度 通过一个辅助数组记录“前驱”,就是当前dp值的来源 例 原序列 9 4 3 2 5 4 3 2 dp数组...
P1040
利润提成 题解:C/C++
hellokitty1679
0
0
分享
#include<bits/stdc++.h> using namespace std; int main(void) { int l; scanf("%d",&l);...
P1383
查找第K小数 题解:使用Set和iterator解决
morning
0
0
分享
#include <bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n){ &n...
P1227
日志排序 题解:75%通过写cmp用sort(a,a+n,cmp)
可可爱爱草莓派
1
0
分享
#include<bits/stdc++.h> using namespace std; struct Log{ char name[12]; int y,month,d,h,minute,s,hs; ...
厦门大学
2021跨考+一战+复试被刷+调剂+上岸厦大#一个本科蹉跎了四年的大水货的考研心
啊翟翟
0
1
分享
简单自我介绍一下,我是一名中流211的三流应届生,本科专业是电气,专业排名74/86,四级439,六级没过。普通的不能再普通大概是我四年本科的完美总结。我知道很多看我帖子的朋友都和我一样,但大都又不甘于普通。所以如果这篇帖子能给陌生的你带来帮助,那是我万分荣幸,这也算是为了给自...
P1703
三种方法秒杀:最大子串和 题解:
honevid
0
1
分享
欢迎访问我的博客,里面有对本题解的更精细排版,还有刷过xmu一些机试题目并给出了详细的分析和解题步骤描述。 博客链接 # 题目 ![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/d19e4d9faf6a4b1eb0ade120b770...
备考心情
字符串匹配
酷酷兔
0
0
分享
#include <iostream> #include <string> #include <vector> #include <unordered_set> using namespace std; string s; uno...
P1840
南京理工-搬箱子 题解:最长递增子序列
勋谦
0
0
分享
#include <bits/stdc++.h> using namespace std; const int N = 1e3 + 10; int s[N],dp[N]; int longSeq(int s[],int n){ for(int i = 0...
P1375
素数 题解:
可可爱爱草莓派
0
0
分享
#include<bits/stdc++.h> using namespace std; const int maxn = 1000000 + 5; int prime[maxn]; void getPrime(){ memset(prime,...
P1006
字符串翻转 题解:getline
勋谦
1
1
分享
#include <iostream> using namespace std; int main(){ string s; getline(cin,s); for(int i = s.size() - 1;i >= 0;i --){ ...
P1726
不连续1的子串 题解:
scnublxx
0
0
分享
无脑回溯+剪枝 #include<iostream> using namespace std; int sum=0; void backtrack(int t,int len,string str) { if(str.length()==len)...
P1027
删除字符串2 题解:
myming
0
0
分享
#include<bits/stdc++.h> using namespace std; int main(){ string s,t,f; // getline(cin, s); ...
备考心情
把二叉搜索树转换为累加树 538
酷酷兔
0
0
分享
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNo...
P1739
街灯 题解:
scnublxx
0
0
分享
数组标记模拟 #include<bits/stdc++.h> using namespace std; int main() { int n,m,k; while(cin>>n>>m>>k) { in...
备考心情
路径总和 III 437
酷酷兔
0
0
分享
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNo...
备考心情
ZIG-ZAG
酷酷兔
0
0
分享
#include<iostream> #include<string> #include<vector> #include<algorithm> #include<string.h> #include<queue&...
P1564
石油储藏 题解:
Howie_Waves
0
0
分享
其实这个题不需要用vis数组,访问过的直接用'*'把'#'填了就好了 //AC代码 #include<bits/stdc++.h> using namespace std; int m, n; char mp[105][105...
P1259
进制转换2 题解:
myming
1
0
分享
#include<bits/stdc++.h> using namespace std; void f(char s[]){ char out[105]; int cnt = 0;  ...
备考笔记
最长连续序列 128
酷酷兔
0
0
分享
class Solution { public: int longestConsecutive(vector<int>& nums) { unordered_set<int>se; for(int x: num...
P1373
比较奇偶数个数 题解:C
hellokitty1679
0
0
分享
#include<stdio.h> int main(void) { int N,m; while(scanf("%d",&N)!=EOF) ...
备考心情
每日温度 739
酷酷兔
0
0
分享
class Solution { public: vector<int> dailyTemperatures(vector<int>& temperatures) { int n = temperatures.size(); ...
北京师范大学
22年北师计算机考研经验帖
cccccc
0
1
分享
我一战二战的时候走了很多弯路,当时就很希望能多一点经验帖,备考时也有各种感悟,因此大着胆子写个经验帖,希望大家能有所受益 ~ 1、基本情况: 初试成绩365分,其中政治72分,英语75分,数学122分,专业课95分。 本科双一流学校,电子信息类,跨考,学过C和数据结构但是编程只会MA...
P1520
字符游戏 题解:
yanmy
0
1
分享
#include <stdio.h> int main() { int a[26] = {0}, n; char c; scanf("%d", &n); &n...
备考心情
P1434 [SHOI2002] 滑雪
酷酷兔
0
0
分享
#include<iostream> #include<cstdio> #include<cmath> using namespace std; int dx[4] = { 0,0,1,-1 }; int dy[4] = { 1,-1,0,0 ...
P1501
Runtime Error 通过75%
15240928957
3
0
分享
#include <iostream> #include <stack> #include <cstring> using namespace std; int main() { stack<i...
P1722
身份证校验 (C++ ID Corrent没绷住)题解:
我与代码的故事
0
1
分享
没注意ID Corrent(ID Correct)WA一次 #include<bits/stdc++.h> using namespace std; int v[20] = {7, 9, 10, 5, 8, 4, 2, 1, 6, ...
P1123
小偷的背包 题解:
折翼的小鸟先生
0
0
分享
简单dp,直接转移就行,题目没给范围但1000就够了 #include<cstdio> #include<iostream> #include<cstring> #include<queue> #include<stack...
P1014
加密算法 题解:
ccccccyes
0
0
分享
#include <iostream> using namespace std; int main(){ string str; int flag = 0; getline(cin,str); for(int i = 0; i<...
P1387
查找 - 北邮 题解:替换部分求问
23hg
1
0
分享
完整已AC的代码附在最后!!!! ---------------------先问一个关于替换部分的问题---------------------- 以下实现替换部分的代码只有33%的通过率 int t = 0; string rep = op.substr(3, op.si...
P1176
十进制和二进制 题解:
ccccccyes
0
0
分享
评测值:173先过 如果只过一半,应该是大整数没满足 可以试试10个9 在线二进制按位逆序运算工具-Bejson.com //都是bigInt的转换 //十进制转二进制,二进制转十进制 //有多次输入 //都是根据int的形式下的原理进行模拟 ...
P2004
怎么借书 题解:暴力即可
我要上岸!
0
1
分享
#include<bits/stdc++.h> using namespace std; int main() { int n; cin >> n; &n...
备考笔记
55. 跳跃游戏
酷酷兔
0
0
分享
public class Solution { public boolean canJump(int[] nums) { int n = nums.length; int rightmost = 0; for (int i =...
P1446
日期累加 题解:注释了函数的功能
可可爱爱草莓派
0
0
分享
#include<bits/stdc++.h> using namespace std; int m[] = {0,31,28,31,30,31,30,31,31,30,31,30,31}; int judge(int year){//用于判断闰年,修改2月份天数,并返回这一...
P1013
判断素数 题解:关于埃氏筛选预处理打表的方法求解
Djiangxu
0
1
分享
埃氏筛法简述:和辗转相除法比较相似。首先将2到n范围内的整数写下来,从2开始依次找到各个素数,然后将这个素数不超过n的倍数划去。反复操作后就能得到n以内的所有素数。 例子:n = 20时 从2开始,第一遍筛掉它的倍数4、6、8、10、12、14、16、18、20,这些数都不是素数,...
P1106
一轮的模拟,其他的直接用sort就可以
James
0
2
分享
#include <bits/stdc++.h> using namespace std; int a[10005]; int b[10005]; int c[10005]; int n; //插入排序 void insert_sort(int *a,in...
P1905
整数排序 题解:
Anechoo
0
3
分享
c++题解 思路:平常排序我们使用sort()函数进行。但标准sort()函数只能满足由小到大排序,不能符合题目条件。 其实sort()函数可以传入3个参数,分别数组首地址,尾地址,以及比较函数。例如 int a[10]; sort(a,a+10,cmp) 此时c...
备考心情
二叉树的直径 543
酷酷兔
0
0
分享
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNo...
备考心情
P1229 遍历问题
酷酷兔
0
0
分享
#include<cstdio> #include<cstring> #include<cmath> #include<algorithm> using namespace std; int ans; char str1[233]...
P1339
魔咒词典 题解:
柠檬果果
2
1
分享
佬们,能帮忙看看这个代码为啥之能过50%吗?自己测试着没有任何问题,谢谢!!! #include<bits/stdc++.h> using namespace std; int main(){ string s,txt; map<string,strin...
备考心情
TAT的个数
酷酷兔
0
0
分享
//#include<iostream> //#include<vector> //#include<algorithm> //#include<unordered_set> //using namespace std; //int...
P1018
用vector每次用erase删除表演的小朋友
可可爱爱草莓派
0
0
分享
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; vector<int&...
P1551
判断二叉树是否对称 题解:
Howie_Waves
0
1
分享
将层序遍历的字符串反序列化,构造成二叉链表形式的二叉树 再通过isSymmetric和isMirror两个函数判断是否对称 (我的这两个函数感觉相对来说要更容易理解一下) P.S 代码中的l是list<int>链表,用来存储层序遍历的字符串输入,方便获...
P1479
01字符串 题解:(斐波那契数列换皮)
lenny
0
0
分享
本题题意看似很难摸着头脑,实则这是一道斐波那契数列题的换皮。 根据题意可以自行推算 当n=1时,组合只有0 结果是1 当n=2时,组合:00 1 结果是2 当n=3时,组合:000 10 01 结果是3 当n=4时,组合:0000 100 010 001 11 结...
P1932
数组查找 题解:
无敌霹雳破坏龙
0
0
分享
#include<stdio.h> #include<stdlib.h> int find(int *s,int x,int n); int main(){ int n,m,x; sc...
P1292
字母统计 题解:
ccccccyes
0
0
分享
#include <iostream> using namespace std; int arr[30] = {0}; int main(){ string str; int index; cin>>str; for...
我要提问
全站热榜
1
N诺成就值出炉,帮你一眼识别大神
2
机试如何才能快速提高?
3
[置顶]计算机考研择校分析【25考研必读】
4
广度优先搜索计算每个人移动到每个位置需要去掉障碍物的最少数目,最后求和的最小值
5
简单易懂
6
1377旋转矩阵
7
C++递归解法,有注释
8
ip地址(C)
9
1017 幂次方 快速幂模板
10
计算机考研复试笔记——操作系统篇