码迷,mamicode.com
首页 >  
搜索关键字:str    ( 67828个结果
hust 1074
这是错误程序#include#include#include#include#include#includeusing namespace std;mapcow;int main(){ //freopen("in.txt","r",stdin); char str[1000],name[...
分类:其他好文   时间:2014-05-17 00:59:53    阅读次数:266
以函数返回值做参数时,函数调用的顺序
环境:vs2013在下面的代码中1 //类似于下面的代码2 3 foo(char*,char*,char*);4 5 char* str ="A#B#C";6 7 foo(strtok(str,"#"),strtok(NULL,"#"),strtok(NULL,"#")); 预计让函数foo得到("...
分类:其他好文   时间:2014-05-16 23:52:09    阅读次数:400
listctrl查找定位 使用测试过还很好用
35、listctrl查找定位 使用测试过还很好用// 简单的查找函数// FindString(CListCtrl& , 查找内容 , 开始位置 , 到达底部时是否从头查找)int FindString(CListCtrl& list,LPCTSTR str,int startIndex,BOOL...
分类:其他好文   时间:2014-05-16 19:14:26    阅读次数:339
iOS拨打电话(三种方法)
iOS拨打电话(三种方法)查了很多地方的关于iOS程序拨打电话,大都不全,今天我总结了三种方法,各有不同,拿来给大家分享,希望给大家有所帮助1,这种方法,拨打完电话回不到原来的应用,会停留在通讯录里,而且是直接拨打,不弹出提示NSMutableString* str=[[NSMutableStrin...
分类:移动开发   时间:2014-05-16 06:11:13    阅读次数:372
杭电 2024
1 #include 2 #include 3 using namespace std; 4 5 int main() 6 { 7 int n; 8 string str; 9 int flag;10 while (cin>>n)11 {12 ...
分类:其他好文   时间:2014-05-16 06:05:15    阅读次数:377
LeetCode OJ - Insertion Sort List
题目: Sort a linked list using insertion sort.解题思路: 假设 list[1..i]是排好序的,找到第i+1个元素应该插入的位置及其前驱,然后将其插入。代码: /** * Definition for singly-linked list. * str...
分类:其他好文   时间:2014-05-16 05:47:08    阅读次数:258
杭电2025
1 #include 2 #include 3 using namespace std; 4 5 int main() 6 { 7 string str=""; 8 string str2=""; 9 char max;10 while (getline(ci...
分类:其他好文   时间:2014-05-15 16:20:41    阅读次数:258
Python常用函数及说明
基本定制型C.__init__(self[, arg1, ...]) 构造器(带一些可选的参数)C.__new__(self[, arg1, ...]) 构造器(带一些可选的参数);通常用在设置不变数据类型的子类。C.__del__(self) 解构器C.__str__(self) 可打印的字符输出...
分类:编程语言   时间:2014-05-14 12:26:48    阅读次数:435
js replace各种用法
作者:zccst正则表达式是常学常新的知识点,一点点积累吧,今天重点看replace,以前印象中应该:str.replace(old,new);即从从原字符串中找到old,然后用new来替换。今天发现,第二个参数还可以是一个函数,而且该函数还有两个参数。例如,jQuery中$.camelCase的实...
分类:Web程序   时间:2014-05-14 12:10:21    阅读次数:308
operator->
在学习Stl的过程中,经常看到->符号的重载,但一直不太明白。 今天做了一个小测试,来看看如果调用它。 以list的迭代器为例,在 pointer operator->() const { return &(operator*());}中加入 cout str_list; str_list.push...
分类:其他好文   时间:2014-05-14 10:32:52    阅读次数:221
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!