码迷,mamicode.com
首页 > 2015年05月11日 > 全部分享
使用lint工具优化Android代码
Android lint 工具优化代码,给apk瘦身...
分类:移动开发   时间:2015-05-11 21:53:13    阅读次数:300
用可变参数列表实现求n个数的平均值
va_list arg;声明一个va_list 类型的变量arg,它用于访问参数列表的未确定部分; va_start(arg,val);第一个参数是va_list的变量名,第二个参数是不确定参数的前一个参                               数; a_arg(arg,int);返回这个参数的值,并使用var_arg指向下一个可变参数,第一个参数是       ...
分类:其他好文   时间:2015-05-11 21:53:08    阅读次数:141
hdu 1505 City Game(hdu1506的二维推广)
1.输入的时候数据的时候要注意 2.1506的二维推广 代码:#include #include #include using namespace std; const int INF=1<<30; int a[1005][1005]; int L[1005]; int R[1005]; int main() { int t; int m,n; int ans; ...
分类:其他好文   时间:2015-05-11 21:53:08    阅读次数:109
28.为什么技术文章阅读量只几千,鸡汤文却轻松过万
28.为什么技术文章阅读量只几千,鸡汤文却轻松过万...
分类:其他好文   时间:2015-05-11 21:51:19    阅读次数:205
hdu 2066 一个人的旅行
floyd...
分类:其他好文   时间:2015-05-11 21:51:57    阅读次数:96
进程模块枚举与隐藏
整理...
分类:系统相关   时间:2015-05-11 21:53:27    阅读次数:189
HDU_1002
#include #include int main() { char a[1000],b[1000],c[1001]; int i,j=0,p=0,n,n1,n2; scanf("%d",&n); while(n--) { scanf("%s %s",a,b); printf("Case %d:\n",++j); ...
分类:其他好文   时间:2015-05-11 21:50:26    阅读次数:157
HDU_1016
#include #include #include #include using namespace std; const int Max = 40; bool prime[Max]; bool vis[Max]; int A[Max]; int n; void IsPrime() { prime[0] = prime[1] = 0; prime[2] = 1; for(i...
分类:其他好文   时间:2015-05-11 21:51:44    阅读次数:121
HDU_1902
#include #include #include using namespace std; const int maxn = 20005; int N[maxn], M[maxn]; int buffer[10]; int n, m; void scan_d(int &x) { char ch = getchar(); while(!isdigit(ch)) ch = ge...
分类:其他好文   时间:2015-05-11 21:52:16    阅读次数:110
HDU_1241
#include #include using namespace std; const int maxn = 100 + 5; char pic[maxn][maxn]; int m, n, idx[maxn][maxn]; void dfs(int r, int c, int id) { if(r = m || c = n) return; if(idx[r][c] > 0...
分类:其他好文   时间:2015-05-11 21:50:54    阅读次数:100
2.opencv图像处理常用操作
图像的平滑处理平滑,也称 模糊, 平滑处理时需要用到一个滤波器 。滤波器想象成一个包含加权系数的窗口,这个加权系数也叫做核或者模版。 // 图像平滑处理分而学之.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include #include ...
分类:其他好文   时间:2015-05-11 21:49:43    阅读次数:110
股峰求道 - 炼股成金:从散户到操盘手的修炼法则(2015年5月11日)
《炼股成金:从散户到操盘手的修炼法则》作 者:股峰求道译 者:系 列:出 版:广东人民出版社字 数:183千字阅读完成:2015年5月11日
分类:其他好文   时间:2015-05-11 21:51:25    阅读次数:240
Apache Commons Lang包的常用方法总结
Java代码库import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOExcept...
分类:Web程序   时间:2015-05-11 21:49:36    阅读次数:288
高斯消元法简单实现
#include#define row 3#define colomn 3void swap(double *a,double *b);int main(){ int i,j,m,k,ii,jj; double a[row][colomn]={{2,3,1},{4,2,3},{7,1,-...
分类:其他好文   时间:2015-05-11 21:48:57    阅读次数:142
Yii框架中的CURD操作
findAll(); $Admin->findAll("id = 22"); $Admin->findAll(array("select"=>"id,name,password","condition"=>"id>2")); $Admin->findAllB...
分类:其他好文   时间:2015-05-11 21:49:14    阅读次数:166
MVC中路由的修改和浏览器的地址参数
在 ASP.NET MVC 应用程序中,它是更常见的做法在作为路由数据 (像我们一样与身份证上面) 比将它们作为查询字符串传递的参数中传递。public string Welcome(string name, int ID = 1){ return HttpUtility.HtmlEncode...
分类:Web程序   时间:2015-05-11 21:49:04    阅读次数:124
Swift # 函数
Swift学习 Swift是Apple在WWDC2014所发布的一门编程语言,用来撰写OS X和iOS应用程序[1]。在设计Swift时.就有意和Objective-C共存,Objective-C是Apple操作系统在导入Swift前使用的编程语言 Swift是供iOS和OS X应用编程的新编程.....
分类:编程语言   时间:2015-05-11 21:47:03    阅读次数:183
2143条   上一页 1 ... 16 17 18 19 20 21 22 ... 127 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!