//AToI #include #define SIZE 200 int data[SIZE] = {4,5,6,7}; int AToI(int N,int Base) { int ret = 0; for(int i=0;i #define SIZE 20 int data[SIZE]; int... ...
分类:
其他好文 时间:
2017-04-01 15:38:34
阅读次数:
140
#include #include #include using namespace std; char a[33]; int countOfZeros(int n) { int count=0; itoa(n,a,2); int len=strlen(a); //cout>num; cout<<c... ...
分类:
其他好文 时间:
2017-03-12 13:03:37
阅读次数:
103
Learn how you can maximize big data in the cloud with Apache Hadoop. Download this eBook now. Brought to you in partnership with Hortonworks. In Febru ...
分类:
其他好文 时间:
2017-02-20 13:55:09
阅读次数:
987
怎样将整数转化成字符串数,并且不用函数itoa? 解析:整数转化成字符串,可以采用加'0',再逆序的办法,整数加'0'就会隐性转化成char类型的数。答案:程序代码如下 如果可以使用itoa函数的话,则十分简单,答案如下: ...
分类:
其他好文 时间:
2017-02-08 19:35:29
阅读次数:
172
单元测试、白盒测试:用Mockito测试SpringMVC+Hibernate ...
分类:
编程语言 时间:
2017-01-23 17:19:36
阅读次数:
449
semipal.in / semipal.out Por Costel the pig, our programmer in-training, has recently returned from the Petrozaporksk training camp. There, he learned ...
分类:
其他好文 时间:
2017-01-20 07:25:28
阅读次数:
293
题意:对数字的一些操作。 1.在stdlib.h中有个函数itoa(),可以实现整型数字转化成字符串。( >还有其他类型可以转换)itoa的用法:itoa(i,num,10);i 需要转换成字符的数字num 转换后保存字符的变量(数组)10 转换数字的基数(进制)10就是说按照10进制转换数字。还可 ...
分类:
其他好文 时间:
2017-01-04 07:16:01
阅读次数:
232
#include using namespace std; #define SIZE 9 #define MAXLEN 6 int data[SIZE][MAXLEN]; int numberLen[SIZE]; int overlapLen[SIZE+1][SIZE+1]; void IToA(i... ...
分类:
其他好文 时间:
2016-12-28 14:40:46
阅读次数:
148
问题网址 https://leetcode.com/problems/hamming-distance/ 就是一个异或后,求1的位数的问题。 看到问题之后,首先困扰是: int能不能求异或?是不是要转成二进制才可以? 答案是肯定的。直接 x^y 就行了。 然后就是统计位数的问题了 答案一:https ...
分类:
其他好文 时间:
2016-12-22 22:54:47
阅读次数:
232
第一次翻译,虽然是个很简单的函数介绍... 文件boost/lexical_cast.hpp中定义了此函数: [cpp] view plain copy namespace boost { class bad_lexical_cast; template<typename Target, typen ...
分类:
其他好文 时间:
2016-12-15 17:30:47
阅读次数:
195