敲到n皇后,map一下算法
class Solution {
public:
vector > res;
void helper(vector &nums, int index, int n) {
if(index == n) {
bool flag = true;
for(int i = 0; i < n && flag; i++)...
分类:
其他好文 时间:
2014-11-12 16:27:33
阅读次数:
185
递归public class Solution {
public int findMin(int[] num) {
return helper(num, 0, num.length-1);
}
//with duplicate
public static int helper(int[] a, int left, int right){
...
分类:
编程语言 时间:
2014-11-11 12:40:09
阅读次数:
211
Model:class Blog strip_rule %> 代码中调用子模板页 _strip_rule.html.erb form页面用到得helper方法module BlogAdminHelper def link_to_remove_fields(name, f)...
分类:
其他好文 时间:
2014-11-10 19:42:19
阅读次数:
349
using System;using System.Collections.Generic;using System.IO;using System.Threading;using System.Xml;namespace Helper{ public class SitemapXml { ...
分类:
Web程序 时间:
2014-11-10 13:42:32
阅读次数:
224
数据的增加
1、创建一个SQLite数据的帮助类
SQLiteDatabase db = helper.getWritableDatabase();
2、执行SQL语句,实现数据的增加
db.execSQL("insert into person (name,number) values (?,?)", new Object[] { name, number });
3、关闭数据库
d...
分类:
移动开发 时间:
2014-11-07 16:59:43
阅读次数:
151
数据的增加
1、创建一个SQLite数据的帮助类
SQLiteDatabase db = helper.getWritableDatabase();
2、创建一个类似map集合的类ContentValues,用来存储键值对
ContentValues values = new ContentValues();
3、把需要增加的数据存放进去
values.put("name", name...
分类:
移动开发 时间:
2014-11-07 16:58:10
阅读次数:
136
这几天太忙没时间写博客,今天回家就简单的看了下ThreadPool的源码,发现有一个好玩的东西,叫做”执行上下文“,拽名叫做:”ExecutionContext“。一:ThreadPool的大概流程。第一步:它会调用底层一个helper方法。第二步:走进这个helper方法,我们会发现有一个队列.....
分类:
编程语言 时间:
2014-11-06 02:01:12
阅读次数:
292
网上找了好多,没有现成的资料,我自己写一个出来吧:var helper=new cc.DrawNode();helper.drawQuadBezier(cc.p(50,0),cc.p(50,50),cc.p(0,50),50,5,cc.color(255,255,0,255));简单注释下:help...
分类:
Web程序 时间:
2014-11-05 12:35:33
阅读次数:
754
今日任务列表:杨伊:完成团队作业之软件测评的功能部分徐钧鸿:CodingCook的model和helper部分张艺:写用户部分代码黄可嵩:研读搜索实现机理、查找搜索优化方法,明确搜索移植实现徐方宇:研读代码刘浩然:CodingCook的model和helper部分钟毅恒:讨论UI具体实现内容燃尽图:
分类:
其他好文 时间:
2014-11-05 01:48:57
阅读次数:
220
案例:TInfCustomer cus = (TInfCustomer) this.baseDao.getOne(helper);cus.setXXXcus .setXXX不调用update也写入数据库原因:hibernate在每个session里都会做些处理,比如把查询过的对象缓存起来什么,这个时...
分类:
Web程序 时间:
2014-11-04 17:01:58
阅读次数:
166