码迷,mamicode.com
首页 >  
搜索关键字:const 常量    ( 36792个结果
生成干扰线
生成干扰线就是画线:imageline($im参数,rand(0),0,)php验证码代码定义常量:define("host","127.0.0.1");define("user","root");define("pwd","root");
分类:其他好文   时间:2014-05-27 02:48:49    阅读次数:319
C++判断char*的指向
判断char* 的指向常量区还是,栈区,还是堆区
分类:编程语言   时间:2014-05-27 02:40:15    阅读次数:337
qt mvc2
继续上次的例子,对于list才说只有行,讨论列是没有意义的。 bool insertRows(int row, int count, const QModelIndex &parent); bool removeRows(int row, int count, const QModel...
分类:Web程序   时间:2014-05-27 01:25:29    阅读次数:296
C strstr() 函数
包含文件:string.h函数名: strstr函数原型:extern char *strstr(const char *str1, const char *str2);语法:* strstr(str1,str2)str1: 被查找目标 string expression to search.str...
分类:其他好文   时间:2014-05-24 06:31:32    阅读次数:230
计算出前N项的数据
#include#include#includeusing namespace std;const int N = 10;int helper(int* a,const int num1,const int num2){ int i=1; int j=1; for(int m = 0;m te...
分类:其他好文   时间:2014-05-24 06:17:01    阅读次数:222
归并排序
归并排序#define LOCAL#include#include //生成随机数c++11支持 #include #include #includeusing namespace std;int const MAX_N=10;int a[MAX_N],b[MAX_N],c[2*MAX_N];//归...
分类:其他好文   时间:2014-05-24 06:01:45    阅读次数:354
简易时钟
内容来源于开发者社区。用到的代码如下:using UnityEngine;using System.Collections;using System;public class ClockAnimator : MonoBehaviour{ private const float h...
分类:其他好文   时间:2014-05-24 00:47:44    阅读次数:308
linux socket使用经验总结
1. scoket函数中PF_INET AF_INET区别在UNIX系列中,PF_INET表示poxis, BSD系列用AF_INET2. in_addr_t inet_addr(const char *cp);入参是字符型ip,in_addr_t 为uint32_t3. if (setsockop...
分类:系统相关   时间:2014-05-24 00:20:02    阅读次数:401
寻找数组中重复次数最多的数
#include#includeusing namespace std;int helper(const int a[],const int n){ map m; for(int i = 0;i::iterator comp = m.begin(); for( map::iterator it...
分类:其他好文   时间:2014-05-19 12:44:34    阅读次数:270
在O(n)时间复杂度内找到出现超过一半的数
#includeusing namespace std;bool solver(const int a[],const int n, int & num){ if(NULL == a || 0>= n) return false; ////注意,是小写~ int count = 0; ...
分类:其他好文   时间:2014-05-19 12:11:20    阅读次数:335
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!