首页 > 其他
一分钟明确 VS manifest 原理
什么是vs 程序的manifest文件manifest 是VS程序用来标明所依赖的side-by-side组建,如ATL, CRT等的清单。为什么要有manifest文件一台pc上,用一组建往往会有不止一个版本号(c:/windows/winsxs或系统文件夹下),程序在载入的时候,不知载入哪个,于...
分类:其他   时间:2015-05-19 12:36:53    收藏:0  评论:0  赞:0  阅读:205
162 Find Peak Element
public class Solution { public int findPeakElement(int[] nums) { if (nums == null || nums.length == 0 || nums.length == 1) { retu...
分类:其他   时间:2015-05-19 12:36:23    收藏:0  评论:0  赞:0  阅读:207
未能加载文件或程序集“......”或它的某一个依赖项。系统找不到指定的文件。
分类:其他   时间:2015-05-19 12:36:14    收藏:0  评论:0  赞:0  阅读:210
Jump Game —— LeetCode
Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximu...
分类:其他   时间:2015-05-19 12:35:53    收藏:0  评论:0  赞:0  阅读:152
Mustache 使用心得总结
Mustache 使用心得总结前言:之前的一个项目里面就实用到这个前台的渲染模版,当时挺忙的也没时间抽出时间总结一下,刚好上周项目里又用到这个轻量型的渲染模版,真心感觉非常好用,因此就总结一下使用心得,算是一个入门级别的指引吧。1. Mustache 概述Mustache是基于JavaScript实...
分类:其他   时间:2015-05-19 12:35:43    收藏:0  评论:0  赞:0  阅读:212
RDLC系列之四 常见错误
解决 RDLC 报表自动分页表头显示问题原文:http://www.th7.cn/Program/net/201207/85445.shtmlRDLC是用XML来描述一个报表相关的一切,只需要在节点添加true子节点就可以,并设定值为true.有些朋友在VS环境中无法打开XML编辑方式,这里我提示一...
分类:其他   时间:2015-05-19 12:35:33    收藏:0  评论:0  赞:0  阅读:338
[Leetcode] Word Search II
Given a 2D board and a list of words from the dictionary, find all words in the board.Each word must be constructed from letters of sequentially adjac...
分类:其他   时间:2015-05-19 12:35:23    收藏:0  评论:0  赞:0  阅读:193
用起来超爽的Maven——进阶篇
以后随着使用的maven的频率增加,此文件会越来越大,也是为什么需要把默认C:\Users\Administrator\.m2 \repository目录改变为D:/OpenSources/repository(1,C盘空间不足2,系统出现问题,重装本地仓库被覆盖)一、EclipseMaven插件安...
分类:其他   时间:2015-05-19 12:35:03    收藏:0  评论:0  赞:0  阅读:256
foundation框架中的常用结构体
1.CGPoint/NSPoint :表示坐标点的创建:CGPoint *cp=NSMakePoint(10,10) //x,y 或 NSPonit *cp=CGPointMake(10,10)2.CGSize/NSSize : 用来表示尺寸的创建: CGSize *s=NSMakeSize(10....
分类:其他   时间:2015-05-19 12:34:43    收藏:0  评论:0  赞:0  阅读:141
字典树trie的学习与练习题
博客详解:http://www.cnblogs.com/huangxincheng/archive/2012/11/25/2788268.htmlhttp://eriol.iteye.com/blog/1166118http://www.360doc.com/content/12/1116/15/9...
分类:其他   时间:2015-05-19 12:34:23    收藏:0  评论:0  赞:0  阅读:289
gcc 安装
最近在中标麒麟上面工作,结果发现上面gcc都没有,没有办法只好自己装(PS 中标麒麟:怪我咯) 资源:http://download.csdn.net/detail/jiahuat/8715413 按照里面的help做就ok了! 注意:安装顺序不能错,否则后果很严重;如果错了,可以用 ...
分类:其他   时间:2015-05-19 12:33:53    收藏:0  评论:0  赞:0  阅读:204
spark streaming限制吞吐
使用spark.streaming.receiver.maxRate这个属性限制每秒的最大吞吐。官方文档如下:Maximum rate (number of records per second) at which each receiver will receive data. Effective...
分类:其他   时间:2015-05-19 12:33:43    收藏:0  评论:0  赞:0  阅读:481
ArrayList的ConcurrentModificationException
http://arron-li.iteye.com/blog/645008arraylist解决ArrayList的ConcurrentModificationException增强for 循环http://www.cnblogs.com/linjiqin/archive/2011/02/10/19...
分类:其他   时间:2015-05-19 12:33:13    收藏:0  评论:0  赞:0  阅读:234
73 Set Matrix Zeroes
public class Solution { public void setZeroes(int[][] matrix) { if (matrix == null || matrix.length == 0 || matrix[0].length == 0) { ...
分类:其他   时间:2015-05-19 12:32:43    收藏:0  评论:0  赞:0  阅读:132
2lession-文件访问
python对文件的读写操作
分类:其他   时间:2015-05-19 12:32:13    收藏:0  评论:0  赞:0  阅读:179
4--视图模型
1、创建视图 1 array('id'=>'cid','title'=>'ctitle','alias'=>'calias','published'=>'cpublished','order'=>'corder','access'=>'caccess','sectionid'),10 ...
分类:其他   时间:2015-05-19 12:32:03    收藏:0  评论:0  赞:0  阅读:242
白盒测试 语句覆盖、判定覆盖、条件覆盖、判定条件覆盖、条件组合覆盖、路径覆盖(转)
转自:http://wenda.tianya.cn/wenda/thread?tid=758a1e447e62b7df&hl=ja白盒测试作为测试人员常用的一种测试方法,越来越受到测试工程师的重视。白盒测试并不是简单的按照代码设计用例,而是需要根据不同的测试需求,结合不同的测试对象,使用适合的方法进...
分类:其他   时间:2015-05-19 12:31:53    收藏:0  评论:0  赞:0  阅读:321
HDU 1166 敌兵布阵【线段树 单点更新】
题意:给出n个数,a1,a2,a3,,,,,an,再给出一些操作add i j 表示给第i个节点增加jsub i j 表示给第i个节点减少jquery i j 表示询问第i个节点到第j个节点的和套的别人的模板写的---还是要再多自己写写的说------- 1 #include 2 #incl...
分类:其他   时间:2015-05-19 12:31:43    收藏:0  评论:0  赞:0  阅读:219
153 Find Minimum in Rotated Sorted Array
public class Solution { public int findMin(int[] nums) { if (nums == null || nums.length == 0) { return 0; } int re...
分类:其他   时间:2015-05-19 12:31:23    收藏:0  评论:0  赞:0  阅读:216
listview 按最新数据展示
/* * 查看所有的数据 */ public List findAll(){ List list = new ArrayList(); SQLiteDatabase db = helper.getReadableDatabase(); Cursor cursor = db.rawQuer...
分类:其他   时间:2015-05-19 12:31:03    收藏:0  评论:0  赞:0  阅读:342
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!