码迷,mamicode.com
首页 >  
搜索关键字:action namespace    ( 58010个结果
leetcode_1-两数之和
#题目 #代码 #include <unordered_map> #include <vector> using namespace std; class Solution { public: vector<int> twoSum(vector<int> &nums, int target) { v ...
分类:其他好文   时间:2021-04-13 12:55:20    阅读次数:0
react的Router的exact、path、component、strict属性
type Location = { //这是一个location pathname: Pathname; search: QueryString; query: Query; state: LocationState; action: Action; key: LocationKey;};class ...
分类:其他好文   时间:2021-04-13 12:11:38    阅读次数:0
猜数字游戏 计应192(西)第四组 贾宪谱
我用c#编写了一款猜数字游戏,系统随机生成一个1到100之间的数字,玩家进行猜测,如果猜错,提示玩家数字过大或过小,如果猜对恭喜玩家胜利,并且推出游戏。 #include<iostream> using namespace std; int main() { int num = rand() % 1 ...
分类:其他好文   时间:2021-04-13 12:04:34    阅读次数:0
密码引擎-商用密码算法实现2-交叉测试
1.实验内容 1.1 自己实现的SM3算法的结果与OpenSSL的结果比对是否一致 1.2 自己实现的SM4算法加密的,OpenSSL的SM4算法解密,或者相反 1.3 自己实现的SM2算法签名,OpenSSL的SM2算法验签,或者相反 2. 出现的错误及解决办法 ...
分类:编程语言   时间:2021-04-13 11:47:10    阅读次数:0
网络流题目选解
这里有板子 最大流 view code namespace Flow { int tot=1,fi[N],ne[M],to[M],w[M],S,T,d[N],nn; inline void add(int x,int y,int c) { ne[++tot]=fi[x],fi[x]=tot,to[t ...
分类:其他好文   时间:2021-04-13 11:45:28    阅读次数:0
计应191西 第三组 康文龙
using System;using System.Collections.Generic;using System.Text;using System.Text.RegularExpressions; namespace ConsoleApplication1{ class Class1 { pr ...
分类:其他好文   时间:2021-04-13 11:44:10    阅读次数:0
1.4 课后习题与实验
习题 1-1 请将下列公式翻译成表达式 3x + 5y $ \frac{c+1}{ab} $ $ \sqrt{3a^3}$ (n+2)(n-9) #include<iostream> #include<cmath> using namespace std; int main() { int x=1, ...
分类:其他好文   时间:2021-04-12 12:53:21    阅读次数:0
计应191(西)第六组 靳琳琳
四则运算代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace ClassLibrary1{ public ...
分类:其他好文   时间:2021-04-12 12:51:16    阅读次数:0
2013年省赛答案
7)错误票据 解题思路:考察的是在不知数据个数的前提下存储一个数组的方法,这里可以采用sstream库的优势,进行巧妙地转化,进而解决此题。 #include <iostream> #include <sstream> using namespace std; const int maxn = 10 ...
分类:其他好文   时间:2021-04-12 12:46:54    阅读次数:0
Codeforces Round #713 (Div. 3) 题解
本场链接:Codeforces Round #713 (Div. 3) A. Spy Detected! #include <bits/stdc++.h> using namespace std; typedef long long ll; #define forn(i,x,n) for(int i ...
分类:其他好文   时间:2021-04-12 12:42:16    阅读次数:0
58010条   上一页 1 ... 24 25 26 27 28 ... 5801 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!