随笔分类 - c++ 函数
C++ 行读入
摘要:View Code #include<iostream>#include<string.h>#include<stdio.h>#include<algorithm>#include<map>#include<string>using namespace std;const int maxn=10000;int num[maxn];map<string,int>node1;map<int,string>node2;int main(){ int n; while(scanf("%d"
阅读全文
C++ 产生随机密码
摘要:View Code #include <time.h>#include <stdlib.h>#include <stdio.h>int main(){ int i,j; char ss[6]; srand((unsigned)time(NULL)); for(i=1;i<=30;i++) { for(j=0;j<6;j++) { int temp=rand(); temp=temp%10; if(temp<=3) ss[j]=temp+48; ...
阅读全文
c++ stringstream
摘要:转自:http://www.cppblog.com/Sandywin/archive/2007/07/13/27984.htmlC++标准库中的<sstream>提供了比ANSI C的<stdio.h>更高级的一些功能,即单纯性、类型安全和可扩展性。在本文中,我将展示怎样使用这些库来实现安全和自动的类型转换。为什么要学习如果你已习惯了<stdio.h>风格的转换,也许你首先会问:为什么要花额外的精力来学习基于<sstream>的类型转换呢?也许对下面一个简单的例子的回顾能够说服你。假设你想用sprintf()函数将一个变量从int类型转换到字符串
阅读全文
c++ 函数
摘要:fill ( first, last, value );作用是设置指定范围内 [first,last).的元素的值为value;范围包括开始元素,单不含结束元素。*min_element(dp[n],dp[n]+m+1)返回最小值。
阅读全文