Combination SumGiven a set of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Thes...
分类:
其他好文 时间:
2014-12-29 22:56:46
阅读次数:
207
/*----------------------------index.html------------------------------------*/ Shopping list What to buy Don't forgrt to buy this stuff. A tin of b...
分类:
其他好文 时间:
2014-12-29 22:56:25
阅读次数:
288
1、下载并解压apache-maven-3.2.5-bin.tar.gztar -xzvf apache-maven-3.2.5-bin.tar.gz2、设置环境变量sudo gedit ~/.profileexport M2_HOME=/opt/apache-maven-3.2.5export M...
分类:
系统相关 时间:
2014-12-29 22:56:53
阅读次数:
542
开发环境:vs2010 在对框架窗口进行分割之后需要根据需求设置每个分割窗口的大小,但是在通过createView(...)设置大小时,往往起不到想要的结果,如下代码并不能将框架的窗口按照预设的大小来进行分割: 1 BOOL CMainFrame::OnCreateClient(LPCREAT...
分类:
编程语言 时间:
2014-12-29 22:56:25
阅读次数:
285
Given an array where elements are sorted in ascending order, convert it to a height balanced BST.解题思路:根据递增序列,求平衡二叉查找树,根据平衡二叉查找树的性质,其左右都是二叉查找树,用递归可以比较轻...
分类:
其他好文 时间:
2014-12-29 22:55:25
阅读次数:
297
函数:数据类型--变量常量--运算符表达式--语句(顺序,分支,循环)--数组--函数程序里的函数:能完成一个相对独立功的代码块。数学里的函数:高度抽象。 函数四要素:函数名,输入,输出,加工 函数定义:[static] 返回类型 函数名(输入参数列表){ //函数体——加工}函数调用:函数名(参数...
分类:
其他好文 时间:
2014-12-29 22:56:15
阅读次数:
185
CNPGridMenuCNPGridMenuis a Mailbox style grid menu with a blurred background for iOS 7 & iOS 8.CNPGridMenu是一个邮箱网格风格的菜单,调出菜单的同时模糊背景,支持iOS7与iOS8.Usage -...
分类:
其他好文 时间:
2014-12-29 22:55:32
阅读次数:
249
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
ajax是异步的 JavaScript 和 XML。通过在后台与服务器进行少量数据交换,AJAX 可以使网页实现异步更新。这意味着可以在不重新加载整个网页的情况下,对网页的某部分进行更新。交互流程: 1--启动 获取XMlHttpRequest对象 2--open 打开url通道,并设置...
分类:
Web程序 时间:
2014-12-29 22:54:43
阅读次数:
174
一、引言 在前面介绍了WPF一些核心的内容,其中包括WPF布局、依赖属性、路由事件、绑定、命令、资源样式和模板。然而,在WPF还衍生出了一种很好的编程框架,即WVVM,在Web端开发有MVC,在WPF客户端开发中有MVVM,其中VM就相当于MVC中C(Control)。在Web端,微软开发了Asp....
typeof可以告诉我们它的操作数是一个字符串(string)、数值(number)、函数(function)、布尔值(boolean)或对象(object)。1.字符串(string)alert(typeof("asss"))、alert(typeof("123"))等。此时警告框显示的是stri...
分类:
编程语言 时间:
2014-12-29 22:54:49
阅读次数:
191
1、首先看一下当前系统中 python3的版本python3 -VPython 3.2.32、安装相应的idlesudo apt-get install idle-python3.2启动后
分类:
编程语言 时间:
2014-12-29 22:57:07
阅读次数:
244
//1.使用for循环遍历数组 NSArray * array = @[@"one",@"two",@"three"]; for (int i = 0; i < array.count; i++) { NSString ...
分类:
编程语言 时间:
2014-12-29 22:56:07
阅读次数:
166
网上有很多关于window下Mysql自动备份的方法,可是真的能用的也没有几个,有些说的还非常的复杂,难以操作。我们都知道mssql本身就自带了计划任务可以用来自动备份,可是mysql咱们要怎么样自动有备份呢?这个方法是用bat批处理来完成的。假想环境:MySQL 安装位置:D:\Program F...
分类:
数据库 时间:
2014-12-29 22:56:57
阅读次数:
255
Related to questionExcel Sheet Column TitleGiven a column title as appear in an Excel sheet, return its corresponding column number.For example: A ...
分类:
其他好文 时间:
2014-12-29 22:55:18
阅读次数:
194
假设有一个activity,activity中有一个Button和一个TextView,点击按钮,弹出Dialog,对话框中有一个ListView,选中ListView中的某一项,关闭对话框,更新activity中EditText的值为你选中项的值。分析这个问题,假设Dialog为AlertDial...
分类:
其他好文 时间:
2014-12-29 22:54:18
阅读次数:
257
Letter Combinations of a Phone NumberGiven a digit string, return all possible letter combinations that the number could represent.A mapping of digit ...
分类:
其他好文 时间:
2014-12-29 22:56:03
阅读次数:
231