码迷,mamicode.com
首页 >  
搜索关键字:include    ( 84546个结果
discuz 修改门户阅读量基数值
找到并修改此文件 \source\include\portalcp\portalcp_article.php 引用来源: https://blog.csdn.net/carry9981/article/details/105594554 1.找到网站的“\source\include\portalc ...
分类:Web程序   时间:2021-06-16 18:03:08    阅读次数:0
Codeforces Round #725 (Div. 3) G题解
G. Gift Set 题意: 给4个数x,y,a,b 每次可以进行2个操作 操作1 如果 x >= a , y >= b , x -= a , y -= b ; 操作2 如果 x >= b , y >= a , x -= b , y -= a ; 问最多可以进行多少次操作 (1≤x,y,a,b≤1 ...
分类:其他好文   时间:2021-06-16 17:56:42    阅读次数:0
C/C++中Main之后执行的函数_艾孜尔江撰
#include <iostream> #include <cstdlib> using namespace std; int func1(),func2(),func3(); int main(int argc,char * argv[]) { _onexit(func2); //函数注册时入栈, ...
分类:编程语言   时间:2021-06-15 18:03:29    阅读次数:0
高级数据结构第六章E . 苹果树 (dfs+树状数组)
link #思路: 经典套路,通过dfs序将树上修改转化为线性修改,这样问题就转化为了单点修改,区间查询,用树状数组维护。 类似题 #代码: #pragma GCC optimize(2) #include<bits/stdc++.h> using namespace std; typedef lo ...
分类:移动开发   时间:2021-06-15 17:41:05    阅读次数:0
重置数列
###重置数列 AcWing 3661 https://www.acwing.com/problem/content/3664/ 纯暴力1-100 #include <iostream> #include <cstring> #include <algorithm> using namespace ...
分类:其他好文   时间:2021-06-13 10:47:34    阅读次数:0
进制转换
//项目名称:进制转换/* */#include<iostream>// 头文件<iostream>定义了标准输入/输出流对象。包含了<iostream>也自动包含了<ios>、<streambuf>、<istream>、<ostream>和<iosfwd>。 //头文件<iostream>中的对象 ...
分类:其他好文   时间:2021-06-13 10:46:03    阅读次数:0
四则计算器
/*项目名称:简单的四则计算器*/// #include <stdio.h>/*是在程序编译之前要处理的内容,称为编译预处理命令。编译预处理命令还有很多,它们都以“#”开头,并且不用分号结尾,所以是c语言的程序语句。*/#include <math.h>/*意思是包含math库,实际上就是一个头文件 ...
分类:其他好文   时间:2021-06-13 10:45:51    阅读次数:0
实验七
// 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1.txt ...
分类:其他好文   时间:2021-06-13 10:45:15    阅读次数:0
[Trie树]C. 【例题3】最长异或路径
解析 这道题我觉得恶心的地方就是要求一整条边的边权的异或给搞出来, 注意运算符不要用错了。 Code #include <bits/stdc++.h> #define N 100005 using namespace std; struct node { int x, to, nxt; }hd[N ...
分类:其他好文   时间:2021-06-13 10:42:08    阅读次数:0
基础动态规划
例1:题目: 从左下走到右上有多少种走法 #include<stdio.h> int a[7][7]; int main() { a[5][1]=1; for(int j=1;j<=5;j++) { for(int i=5;i>=1;i--) { if(i==5&&j==1) a[i][j]=1; ...
分类:其他好文   时间:2021-06-13 10:18:07    阅读次数:0
84546条   上一页 1 ... 8 9 10 11 12 ... 8455 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!