6 Star 5 Fork 1

suze8793686/Data structure

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
atoi strcpy.cpp 733 Bytes
一键复制 编辑 原始数据 按行查看 历史
suze8793686 提交于 2013-09-18 11:02 . 提交atoi算法和strcpy
/***
atoi & strcpy
***/
#include <iostream>
#include <stdlib.h>
#include <assert.h>
using namespace std;
int atoi64(const char *nptr)
{
int c;
int total;
int sign;
//Կո
while ( isspace((int)(unsigned char)*nptr) )
++nptr;
c = (int)(unsigned char)*nptr++;
sign = c;
if (c == '-' || c == '+')
c = (int)(unsigned char)*nptr++; /* */
total = 0;
while (c >='0' && c <= '9') {
total = 10 * total + (c - '0');
c = (int)(unsigned char)*nptr++;
}
if (sign == '-')
return -total;
else
return total;
}
char * strcpyStr (char *destStr, const char* sourceStr){
assert ((destStr!= NULL) && (sourceStr != NULL));
while ((*destStr++ = *sourceStr++) != '\0')
NULL;
return destStr;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/suze8793686/Data-structure.git
git@gitee.com:suze8793686/Data-structure.git
suze8793686
Data-structure
Data structure
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385