码迷,mamicode.com
首页 >  
搜索关键字:std    ( 41627个结果
利用质因数分解定理求与n互质的数的个数
今天我来分享一下如何利用素数分解定理求解与n互质的数的个数。 下面是代码 #include<bits/stdc++.h> using namespace std; long long fun(int x) { long long ans=x; int t=sqrt(x); int cnt; for( ...
分类:其他好文   时间:2021-04-26 14:12:06    阅读次数:0
数据结构-数组
任务 输入N个整数,存入数组,实现以下函数: 实现数组内容原地逆置; 找出数组中的最大元素与第一个元素交换; 输出数组元素的值 编写一个主程序,测试以上3个函数。 代码实现 #include<stdio.h> void swap(int array[], int indexF, int indexS ...
分类:编程语言   时间:2021-04-26 14:01:19    阅读次数:0
编程将字符串s倒序输出,要求利用函数递归实现
编程将字符串s倒序输出,要求利用函数递归实现。 **输入格式要求:"%s" 提示信息:"input your string:\n" **输出格式要求:"%c" 程序运行的输入输出样例: 屏幕先输出提示信息: input your string: 然后用户键盘输入: abcdefg 最后屏幕输出: g ...
分类:其他好文   时间:2021-04-26 13:19:05    阅读次数:0
Leetcode/数学/计数质数
质数的算法: 1,判断n是否能被2~n-1整除 输入的数n不能被2-(n-1)整除,说明是素数 输入的数n能被2-(n-1)整除,说明不是素数 #include<stdio.h> int main() { int i, n; bool i; printf("please input a number ...
分类:其他好文   时间:2021-04-26 13:14:06    阅读次数:0
c++(继承 &&菱形继承)
c++(继承 &&菱形继承) #define _CRT_SECURE_NO_WARNINGS #include <iostream> using namespace std; class Animal { public: int m_Age; }; class Sheep :virtual publ ...
分类:编程语言   时间:2021-04-26 13:09:57    阅读次数:0
C++11的enable_shared_from_this
c++11 中的 shared_from_this() 来源于 boost 中的 enable_shared_form_this 类和 shared_from_this() 函数,功能为返回一个当前类的 std::share_ptr,使用方法如下: #include<memory> class Te ...
分类:编程语言   时间:2021-04-26 13:06:17    阅读次数:0
C++编译优化RVO&NRVO&复制省略
编译器优化技术 现代编译器缺省会使用 RVO(return value optimization,返回值优化)、NRVO(named return value optimization、命名返回值优化)和复制省略(Copy elision)技术,来减少拷贝次数来提升代码的运行效率。 注1:vc6、v ...
分类:编程语言   时间:2021-04-26 13:05:46    阅读次数:0
CF208E Blood Cousins(树上启发式合并)
转化题目,题目要求的是K级祖先,我们可以对于每个询问先跳到祖先,那么就是求对于这个祖先,depth[u]+k的个数是多少个,然后-1就是答案 #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair ...
分类:其他好文   时间:2021-04-24 13:41:24    阅读次数:0
天梯赛L3-025 那就别担心了 (30 分)
链接:https://pintia.cn/problem-sets/994805046380707840/problems/1336215880692482060 思路: 代码: #include<bits/stdc++.h> using namespace std; vector<int>ve[1 ...
分类:其他好文   时间:2021-04-24 13:26:55    阅读次数:0
cmake 支持-lpthread
set(CMAKE_BUILD_TYPE "Release")if( CMAKE_BUILD_TYPE STREQUAL "Debug" ) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -g -Wall -Wno-unused-variabl ...
分类:其他好文   时间:2021-04-24 13:16:43    阅读次数:0
41627条   上一页 1 ... 16 17 18 19 20 ... 4163 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!