Implement an iterator over a binary search tree (BST). Your iterator will be initialized with the root node of a BST. Calling next() will return the n ...
分类:
编程语言 时间:
2016-12-07 18:20:16
阅读次数:
236
str.match(reg) 1.reg没有全局标志g,match将只执行一次匹配。匹配成功返回一个数组,arr = [$0,$1,$2,...,index,str],匹配失败返回null。 arr中的参数说明,$0是匹配文本,$i是第i个子表达式匹配的文本,index是$0在stringObjec ...
分类:
编程语言 时间:
2016-12-07 13:52:26
阅读次数:
197
关于英文对程序员的重要性,就不多说了!英语的学习,有很多,今天也不聊多,只聊英语单词!关于单词的记忆,找过很多方法,下载过很多软件,后来...... ...
分类:
其他好文 时间:
2016-12-06 20:36:22
阅读次数:
252
通过HTML自带特性可以获取来得到对应的class的元素。这里我们可以看到,document.body.childNodes不断在用到,因此进行简单优化 ...
分类:
编程语言 时间:
2016-12-06 20:25:00
阅读次数:
131
公司最近在研究多条件组合查询方案,Google的一位技术专家Sam和我们讨论了几个备选方案。 Sam的信: 我做了进一步研究,目前有这么几种做法: 1) 最直接粗暴,只做一个主index,比如按行业+地区做一个index,这样来说的话,无论多少个标签的查询,直接先用主index做一个筛选,这样下来可... ...
分类:
其他好文 时间:
2016-12-06 20:01:27
阅读次数:
449
Mispricing can be explained by the sum of the two components: true mispricing and estimation errorVe – P = (V – P) + (Ve – V) If the asset is expected ...
分类:
其他好文 时间:
2016-12-06 09:31:50
阅读次数:
225
设计思路:每当用户点击一个表情,就将该表情(DJEmotion)存储到沙盒,当用户切换到“最近”栏目时,从沙盒中取出用户最近点击的表情列表,进行显示。 1. 保存DJEmotion DJEmotion.h DJEmotion.m 2. 将表情存储到沙盒中的工具类 DJEmotionTool.h DJ ...
分类:
其他好文 时间:
2016-12-05 23:02:53
阅读次数:
155
今天我们学习了 AsyncTack, 这是一个异步任务。 那么这个异步任务可以干什么呢? 因为只有UI线程,即主线程可以对控件进行更新操作。好处是保证UI稳定性,避免多线程对UI同时操作。 同时要把耗时任务放在非主线程中执行,否则会造成阻塞,抛出无响应异常。 那么在Android中实现异步任务机制有 ...
分类:
移动开发 时间:
2016-12-05 22:28:08
阅读次数:
248
一、实时搜索 ViewController.swift import UIKit class ViewController: UIViewController { //展示列表 var tableView: UITableView! //搜索控制器 var countrySearchControll ...
分类:
编程语言 时间:
2016-12-05 22:05:59
阅读次数:
299
// 日历表 2 3 4 import java.util.*; 5 import java.text.*; 6 7 class Menology 8 { 9 // 计算当前日期距离1900的天数 10 public long lastDays(String startDay,String seac ...
分类:
其他好文 时间:
2016-12-05 19:04:41
阅读次数:
203