码迷,mamicode.com
首页 > 2015年01月04日 > 全部分享
LeetCode-Maximum Gap
Given an unsorted array, find the maximum difference between the successive elements in its sorted form.Try to solve it in linear time/space.Return 0 ...
分类:其他好文   时间:2015-01-04 06:25:08    阅读次数:192
单元测试框架TestNg使用总结
工欲善其事,必先利其器单元测试的重要性是不言而喻的。但如果没有好的单元测试工具,是无法激起开发人员的欲望。Testng便是利器之一。TestNG是基于Annotation的测试框架的先驱,他拥有通过添加诸如灵活的装置、测试分类、参数测试和依赖方法等特性来克服JUnit3的一些不足之处。下面我将总结一...
分类:其他好文   时间:2015-01-04 06:23:29    阅读次数:5109
[AngularJS] Lazy Loading modules with ui-router and ocLazyLoad
We'velooked at lazy loading with ocLazyLoadpreviously, but what if we are using ui-router and want to lazy load modules when we change states?angular....
分类:Web程序   时间:2015-01-04 06:24:36    阅读次数:1221
Twitter OA prepare: Anagram is A Palindrome
A string is a palindrome if it has exactly the same sequence of characters when traversed left-to-right as right-to-left. For example, the following s...
分类:其他好文   时间:2015-01-04 06:23:36    阅读次数:230
Twitter OA prepare: Visit element of the array
A zero-indexed array A consisting of N integers is viven. We visit the indexs of the array in the following way. In the first step we visit the index ...
分类:其他好文   时间:2015-01-04 06:23:47    阅读次数:206
GET乱码以及POST乱码的解决方法
GET乱码以及POST乱码的解决方法作者:东坡下载来源:uzzf发布时间:2010-10-14 11:40:01点击:一、GET乱码的解决方法 在tomcat的server.xml文件中修下面的代码片段,在最后添加URIEncoding="UTF-8",修改后的结果如下 Xml代码 conne...
分类:其他好文   时间:2015-01-04 06:24:54    阅读次数:200
关于非对话框的透明窗口
#include "StdAfx.h"#include "TransWnd.h"CTransWnd::CTransWnd(void){ const TCHAR szClassName[] = TEXT ("TransWindow") ; WNDCLASS wndclass ; wndclass.s....
分类:其他好文   时间:2015-01-04 06:22:43    阅读次数:171
[AaronYang]C#人爱学不学[7]
做一个决定,并不难,难的是付诸行动,并且坚持到底--Aaronyang的博客(www.ayjs.net)-www.8mi.me1. 委托-我的总结1.1 委托:面试我都会说,把方法当参数。委托包含的只是一个或多个方法的地址。 示例1:(一次执行多个同方法签名的方法)/* *2015年1月3日23.....
分类:Windows程序   时间:2015-01-04 06:24:43    阅读次数:303
Callback Function
typedef void (*callbackFun)(int a, int b);struct exm { int type; callbackFun fun;};A pointer is a special kind of variable that holds the add...
分类:其他好文   时间:2015-01-04 06:25:12    阅读次数:232
使用ActionBar实现Tab导航
为了使用ActionBar实现Tab导航,按如下步骤进行即可。1.调用ActionBar的setNavigationMode(ActionBar.NAVIGATION_MODE_TABS)方法设置使用Tab导航方式。2.调用ActionBar的addTab方法添加多个Tab标签,并为每个Tab标签添...
分类:其他好文   时间:2015-01-04 06:25:01    阅读次数:6464
寒假调研3--架构
淘宝数据魔方技术架构解析http://www.programmer.com.cn/7578/腾讯分析系统架构解析http://www.csdn.net/article/2014-09-15/2821698几乎所有网站http://www.diguage.com/archives/41.htmlFen...
分类:其他好文   时间:2015-01-04 06:22:11    阅读次数:143
Twitter OA prepare: even sum pairs
Write a function:class Solution { public int solution(int[] A); }that, given an array A consisting of N integers, returns the number of pairs (P, Q) s...
分类:其他好文   时间:2015-01-04 06:22:50    阅读次数:277
通知和代理
一个完整的通知一般包含3个属性:- (NSString *)name; // 通知的名称- (id)object; // 通知发布者(是谁要发布通知)- (NSDictionary *)userInfo; // 一些额外的信息(通知发布者传递给通知接收者的信息内容)初始化一个通知(NSNotific...
分类:其他好文   时间:2015-01-04 06:22:39    阅读次数:199
完全卸载oracle
今天在网上看到有位网友写的篇日志,感觉蛮好的,一般卸载oracle有4个地方需求注意:1)Services,2)software,3eventlog,4)path.1.关闭 oracle 所有的服务。可以在 windows 的服务管理器中关闭;2.服务:删除HKEY_LOCAL_MACHINE\SY...
分类:数据库   时间:2015-01-04 06:24:19    阅读次数:203
C#学习-EF在三层中使用
1.搭建普通三层 DAL层,BLL层,Model层,Web层; DAL层引用Model层 BLL层引用DAL层和Model层 Web层引用BLL层和Model层 2.实现EF三层的搭建(添加引用,修改配置信息) 2.1添加EF对象 在Model中添加一个ADO.NET实体数据集 2.2添加引用信息 ...
分类:Windows程序   时间:2015-01-04 06:22:07    阅读次数:402
实战Django:Rango Part3
这一节我们将要给Rango项目设计两个表单:添加分类表单和添加页面表单。
分类:其他好文   时间:2015-01-04 06:23:36    阅读次数:223
unity与android的无缝连接
对unity游戏工程android客户端进行二次开发,其实只要明白 unity和android之间如何相互调用即可。这方面网上已经有博客介绍。u3d游戏公司打包android客户端游戏一般来说有两种方式:1:在eclipse中编写所需要的java代码打包成jar,放到untiy中,用unity直.....
分类:移动开发   时间:2015-01-04 06:23:25    阅读次数:226
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!