1.函数atoi atoi (表示 alphanumeric to integer)是把字符串转换成整型数的一个函数。广泛的应用在计算机程序和办公软件中。atoi( ) 函数会扫描参数 nptr字符串,跳过前面的空白字符(例如空格,tab缩进等)。 原型:int atoi(const char *n ...
分类:
其他好文 时间:
2017-08-09 12:49:52
阅读次数:
179
通用的映射模式 1.定义结构体 2.定义数据库对象 3. 将对象地址传给结构体 ...
分类:
数据库 时间:
2017-08-05 18:57:53
阅读次数:
285
https://leetcode.com/problems/string-to-integer-atoi/description/ Implement atoi to convert a string to an integer. Hint: Carefully consider all possi ...
分类:
其他好文 时间:
2017-08-01 23:01:39
阅读次数:
186
题目链接: http://citel.bjtu.edu.cn/boj/problem.php?id=1653 题目描述: 自己看吧, 懒得写了 解题思路: 就是问一个10进制的数, 和一个2^k进制的数字谁大, 因为我觉得最快就是log2(n)了, 但是这个10进制的数是一个大数, 所以只能用字符串 ...
分类:
其他好文 时间:
2017-07-30 13:56:00
阅读次数:
277
1.字符串转换 s.lower() 转为小写 s.upper() 转为大写 s.swapcase() 大写转为小写,小写转为大写 s.capitalize() 首字母大写 转换为int类型 string.atoi(s) 或者int(s) 转换为float类型 string.atof(s) 或者flo ...
分类:
编程语言 时间:
2017-07-29 20:51:45
阅读次数:
193
A. 学姐的桌面 2014新生暑假个人排位赛01 时间限制 1000 ms 内存限制 65536 KB 题目描写叙述 学姐在增加集训队之后。学习了使用ubuntu系统来做题,可是没有了360电脑管家,学姐再也没办法看到她的飞速电脑开机究竟虐了全国多少人。作为一个电脑高手。学姐花了几分钟黑到了360的 ...
分类:
其他好文 时间:
2017-07-18 15:40:16
阅读次数:
168
原文:http://www.cnblogs.com/zsboy/p/3886677.html 问题:将字符窜转换成数字分析:感觉题目不难,但是细节很多,容易想不到1.数字前面有空格 如s=“ 123456”2.数字前出现了不必要或多于的字符导致数字认证错误,输出0 如s=“ b1234” ,s=“ ...
分类:
其他好文 时间:
2017-07-18 13:41:27
阅读次数:
186
原文:http://www.cnblogs.com/JefferyZhou/archive/2010/07/01/1769555.html 在很多时候我们都很清楚 atoX 系列函数: atoi , atol , atof新来的一系列函数: strtol, strtoul, strtod 通常有如下 ...
分类:
其他好文 时间:
2017-07-18 13:38:13
阅读次数:
346
原文:http://www.cnblogs.com/lpshou/archive/2012/06/05/2536799.html 1、memcpy、memmove、memset源码 link:http://note.youdao.com/share/?id=1f826e4337c7db272e94f ...
分类:
其他好文 时间:
2017-07-18 13:35:08
阅读次数:
252
原文:http://www.cnblogs.com/lidabo/archive/2012/07/10/2584706.html _itoa 功能:把一整数转换为字符串 用法:char * _itoa(int value, char *string, int radix); 详细解释: _itoa是 ...
分类:
其他好文 时间:
2017-07-18 13:20:44
阅读次数:
164