首页

999+
408真题
999+
调剂
999+
择校
999+
爆料
999+
C语言
999+
数据结构
999+
操作系统
999+
网络
999+
组成原理
999+
数据库
999+
软件工程

报考指南

院校信息

专业课程

N诺网校



#include <stdio.h> #include <stdint.h> #include <string.h> void GetNumber(int n) { int res[15] = {0}, index = 0, cou...


#include<bits/stdc++.h> #include<vector> using namespace std; int getCnt(vector<string>& proxy, vector<string>...

#include<iostream> #include<string> #include<vector> #include<algorithm> #include<string.h> #include<queue&...


#include <stdio.h> int root(int N,int k) { if(N >= k) { int num = 0; while(N != 0) { ...

#include <iostream> #include <string> #include <vector> #include <unordered_set> using namespace std; string s; uno...

#include <iostream> #include<vector> #include<algorithm> using namespace std; struct ant { int pos; int direct; ...

#include <bits/stdc++.h> using namespace std; int N; char origin[7][7]; char pic[3005][3005]; void draw(int Q,int x,int y){ i...

#include <iostream> #include <string> using namespace std; int main() { // 从标准输入读取三个字符串 string a, b, c; cin >&...

C++: #include <cmath> #include <iostream> #include <string> using namespace std; int main() {     int n;     while ...

冲刺一个月

scanf,printf的使用,输入/输出格式字符串和格式站位符号

第一天,veryeasy

一、绪论 1.1 基本概念 数据是信息的载体,是描述客观事物属性的数、字符及所有能输入到计算机中并被计算机程序识别和处理的符号的集合。数据是计算机程序加工的原料。 数据元素、数据项: 数据元素是数据的基本单位,通常作为一个整体进行考虑和处理。一个数据元素可由若干数据项组...

#include<bits/stdc++.h> #define N 20100 #define K 600 using namespace std; bool attack[N], havequeen[N]; int n, m, k, sum;//sum为被攻击的位置个数...

期末考试结束了。 结束的本科期间最后一场学业考试心里百感交集。自己马上就不是一名本科生了,回想刚刚入校感叹时间的奇妙。 冲冲冲!!!!

#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <cstring> #include <string> #include <algorithm> using na...

#include #include using namespace std; // 线性筛算法生成素数 void linearSieve(int n, vector& isPrime) {     fill(isPrime.begin(), isPri...

#include <iostream> #include <vector> using namespace std; // 线性筛算法生成素数 void linearSieve(int n, vector<bool>& isPrime) ...

进度: 1、 初步复习STL 重点复习:map、set 2、看数学部分     目标:机试AK  

PS:学校具体考研信息在院校信息中输入学校名称搜索可查看 传送门:https://noobdream.com/schoollist/   专硕 北京印刷学院 首都师范大学 首都经济贸易大学 北京联合大学 河北工程大学 河北地质大学 太原...

1.下列关于冯·诺依曼结构计算机基本思想的叙述中,错误的是 A.程序的功能都通过中央处理器执行指令实现 B.指令和数据都用二进制表示,形式上无差别 C.指令按地址访问,数据都在指令中直接给出 D.程序执行前,指令和数据需预先存放在存储器中 解析: 冯·诺依曼结构计算...

Q:在多道程序环境下,一方面,在内存中的某些进程由于某事件尚未发生而被阻塞运行,但它却占用了大量的内存空间,甚至有时可能出现在内存中所有进程都被阻塞而迫使CPU停止(空闲)下来的情况。另一方面,却又有许多作业在外存上等待(就绪),因无内存而不能进入内存运行的情况。显然这是对系统资源的一种浪费,...

class Solution { public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) { if(root == null || root == p || root...

class Solution { public: int DFS(TreeNode *root,int presum) { if(root==NULL)return 0; int sum=presum*10+root->v...

class Solution { public: bool hasPathSum(TreeNode* root, int targetSum) { if(root == NULL) { return false; ...

class Solution { public: int findMin(vector<int>& nums) { int low = 0; int high = nums.size() - 1; whi...

联系客服