mthoutai

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 105 106 107 108 109 110 111 112 113 ··· 155 下一页

2017年5月25日

摘要: NSString *type = @"hello"; NSString *subtype = @"good"; NSString *typesub = [NSString stringWithFormat:@"%@>%@",type,subtype]; NSString *typesub1 = [t 阅读全文
posted @ 2017-05-25 20:01 mthoutai 阅读(305) 评论(0) 推荐(0) 编辑

摘要: 2.0 简单介绍 正則表達式是能够用来查找与给定模式匹配的文本的搜索模式。比如,在上一章中,我们在一个较长的字符串中查找子字符串Cookbook: var testValue = "This is the Cookbook's test string"; var subsValue = "Cookb 阅读全文
posted @ 2017-05-25 19:59 mthoutai 阅读(207) 评论(0) 推荐(0) 编辑

摘要: 一.克隆文件 我之前安装的时候建的是centos 6.3。可是后来空间不够,没办法,又不想重装centos。由于好多东西要配置,特麻烦,所以先想到了使用resize命令,可是在win8中运行D:\Program Files\Oracle\VirtualBox>VBoxManage.exe modif 阅读全文
posted @ 2017-05-25 19:58 mthoutai 阅读(396) 评论(0) 推荐(0) 编辑

摘要: 阅读全文
posted @ 2017-05-25 19:57 mthoutai 阅读(249) 评论(0) 推荐(0) 编辑

摘要: 要把struts2的action交给spring管理,这样spring才干帮struts2注入须要的的bean(一開始action是由struts初始化,所以想注入spring里面的bean是注入不了的) struts2 的filter生成action的时候由spring管理 struts2向spr 阅读全文
posted @ 2017-05-25 19:54 mthoutai 阅读(107) 评论(0) 推荐(0) 编辑

摘要: #include<stdio.h> #include<string.h> #include<iostream> using namespace std; int abs(int a) { return a>0?a:(-a+1); } int main() { int n,i,j,s1,t1,s2,t 阅读全文
posted @ 2017-05-25 18:46 mthoutai 阅读(120) 评论(0) 推荐(0) 编辑

摘要: Description Farmer John's cows have discovered that the clover growing along the ridge of the hill (which we can think of as a one-dimensional number 阅读全文
posted @ 2017-05-25 18:14 mthoutai 阅读(209) 评论(0) 推荐(0) 编辑

摘要: 上篇文章用的是quicksort方法排序,可是假设用高速排序法对反复率非常高的slice排序的时候,时间复杂度会激增,速度相当慢 所以尝试了一下堆排序,实验结果,感觉挺好的.以下是代码,大家能够參考一下,这个是建立的大顶堆. 二叉树的特性: 最后一个非叶子节点 : root = length/2(当 阅读全文
posted @ 2017-05-25 16:49 mthoutai 阅读(515) 评论(0) 推荐(0) 编辑

摘要: 在我们平时开发Android项目的时候比如常常须要使用各种View控件,然后进行声明。findViewById。而且进行强转。每次都要写这种代码就显得很繁琐,而且easy出错哦。那么针对这种情况且不限定于以上的这类情况,Dependency injection 能够大大减少了类之间的依赖性,能够通过 阅读全文
posted @ 2017-05-25 16:47 mthoutai 阅读(206) 评论(0) 推荐(0) 编辑

摘要: Description Japan plans to welcome the ACM ICPC World Finals and a lot of roads must be built for the venue. Japan is tall island with N cities on the 阅读全文
posted @ 2017-05-25 16:00 mthoutai 阅读(189) 评论(0) 推荐(0) 编辑

上一页 1 ··· 105 106 107 108 109 110 111 112 113 ··· 155 下一页