码迷,mamicode.com
首页 >  
搜索关键字:str2    ( 1159个结果
使用malloc分别分配2KB,6KB的内存空间,打印指针地址
#include #include #include #include int main(void) {     int *str1 = NULL;     int *str2 = NULL;     str1 = (int*)malloc(2*1024*sizeof(char));     str2 = (int*)malloc(6*1024*sizeof(char))...
分类:其他好文   时间:2014-09-18 14:55:34    阅读次数:148
使用malloc分别分配2KB的空间,然后用realloc调整为6KB、1MB、3MB、10MB空间,并且将这五块内存分别用“A”、“B”、“C”、“D”、“E”填充
#include #include #include #include int main(void) {     char *str1 = NULL;     char *str2 = NULL;     char *str3 = NULL;     char *str4 = NULL;     char *str5 = NULL;     str1 = (char*)...
分类:其他好文   时间:2014-09-18 14:55:24    阅读次数:213
DP问题各种模型的状态转移方程 (转)
1(最长公共子串(注意和最长公共子序列区别))两个字符串str1和str2,长度分别为(l1,l2)dp[i][j]表示以两个字符串分别以第i和第j个字符结尾所能达到的公共子序列的长度,由于下面涉及到i-1和j-1,那么这个时候我们一般从i=1和j=1开始到i 0且j> 0且ch1[i-1]= ch...
分类:其他好文   时间:2014-09-16 08:06:50    阅读次数:257
C/C++字符串查找函数 <转>
C/C++ string库(string.h)提供了几个字符串查找函数,如下:memchr 在指定内存里定位给定字符 strchr 在指定字符串里定位给定字符 strcspn 返回在字符串str1里找到字符串str2里的任意一个字符之前已查找的字符数量 strrchr 在字符串里定位给定字符最后一次...
分类:编程语言   时间:2014-09-15 14:17:18    阅读次数:166
LCS
public class LCString2 { public static void getLCString(char[] str1, char[] str2) { int i,j; int len1,len2; len1 = str1.len...
分类:其他好文   时间:2014-09-12 17:01:33    阅读次数:148
php函数substr_replace中文乱码的替代解决方法
$str = "中华人民共和国"; $len = mb_strlen($str,'utf-8'); if($len>=6){ $str1 = mb_substr($str,0,2,'utf-8'); $str2 ...
分类:Web程序   时间:2014-09-10 01:34:49    阅读次数:2924
MySQL自定义排序函数FIELD()
MySQL可以通过field()函数自定义排序,格式:field(value,str1,str2,str3,str4),value与str1、str2、str3、str4比较,返回1、2、3、4,如遇到null或者不在列表中的数据则返回0.mysql> select * from driver_lo...
分类:数据库   时间:2014-09-09 17:59:59    阅读次数:212
常用库函数的编写
1、strcpy 2、strcmp int strcmp(const char* str1,const char* str2) { assert(str1!=NULL && str2!=NULL); while(*str1 && *str2 && *str1 == *str2) { str1++; str2++; } int res = *str1 - *str2; if(...
分类:其他好文   时间:2014-09-09 13:03:18    阅读次数:200
使用eclipse查看堆栈分配
这篇文章源于同事问我说: String str1 = "abc"; String str2 = "abc"; String str3 = new String("abc"); str1 == str2为true,是不是表示str1和str2分配在栈上面的?他们没有被new空间。 然后LZ自己YY了一下,想了个办法用eclipse来查看变量的堆栈分配,权威性有待考证,如有不当,有劳赐教! ...
分类:系统相关   时间:2014-09-03 11:16:26    阅读次数:453
js字符串常用方法枚举
js字符串常用方法枚举/* functionobj$(id)根据id得到对象 functionval$(id)根据id得到对象的值 functiontrim(str)删除左边和右边空格 functionltrim(str)删除左边空格 functionrtrim(str)删除右边空格 functionisEmpty(str)字串是否有值 functionequals(str1,str2)js判断比较两..
分类:Web程序   时间:2014-09-02 18:11:36    阅读次数:269
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!