码迷,mamicode.com
首页 >  
搜索关键字:dal    ( 1659个结果
297. Serialize and Deserialize Binary Tree
Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stored in a file or memory buffer, or ...
分类:其他好文   时间:2016-10-31 13:42:31    阅读次数:186
好!recover-binary-search-tree(难)& 两种好的空间O(n)解法 & 空间O(1)解法
下面我之前的解法,也很好,通过两个数字来记录可能的出错位置,并且在遍历的同时,更新这个位置。需要对出错的规律有深刻了解,比如在解法中,first_result位置就始终没有变过,因为一旦找到就可以不变,通过second_result位置的改变,就能满足条件: ...
分类:其他好文   时间:2016-10-30 19:22:39    阅读次数:213
python爬取糗百第一页的笑话
自学python网络爬虫,发现request比urllib还是要好用一些,因此利用request和BeautifulSoup来实现糗百的首页笑话的抓取。BeautifulSoup通过find和findAll以及利用正则表达式实现HTML对应模块的抓取,当然select也是一个不错的选择。下面是临时的 ...
分类:编程语言   时间:2016-10-28 22:31:08    阅读次数:204
easyui combotree的使用
前台HTML: <div class="search-container"> <table class="search-container-table" cellpadding="0" cellspacing="0"> <tr> <td>统计年份:</td> <td> <input type="te ...
分类:其他好文   时间:2016-10-28 11:51:05    阅读次数:468
硅谷新闻6--下拉刷新/上拉加载更多
1.添加加载更多布局 1_初始化和隐藏代码在RefreshListView构造方法中调用 2_布局文件refresh_listview_footer.xml 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android= ...
分类:其他好文   时间:2016-10-28 02:38:18    阅读次数:483
bootstrap
...
分类:其他好文   时间:2016-10-27 15:09:30    阅读次数:101
动态调整对话框属性(去掉标题栏,去掉边框,修改类似成Border:NONE样式)(调用ModifyStyle和ModifyStyleEx,然后调用SetWindowPos重新显示)
[cpp] view plain copy [cpp] view plain copy [cpp] view plain copy if(dlg.GetSafeHwnd()) { dlg.ModifyStyle(WS_CAPTION, 0); // 去掉标题栏 dlg.ModifyStyleEx(W ...
分类:Windows程序   时间:2016-10-27 01:29:24    阅读次数:469
笔记(用Python做些事情)--变量(数字、字符串)
Python是动态类型,可以用type()查看类型; Python一切皆对象(对象是类的实例化,三个主要概念封装,继承,多态); //:整除符号; decimal类型:高精度的数字类型,但效率不高; 数字类型常用的函数:import math math.pi:π math.sqrt(80):开平方根 ...
分类:编程语言   时间:2016-10-26 19:39:54    阅读次数:177
六 APPIUM Android 定位方式
文本转自:http://www.cnblogs.com/sundalian/p/5629500.html APPIUM Android 定位方式 1.定位元素应用元素 1.1通过id定位元素 Android里面定位的id一般为resrouce-id: 代码可以这样写: WebElement elem ...
分类:移动开发   时间:2016-10-26 19:24:01    阅读次数:228
用while语句求1~100之和
用while语句求1~100之和 public class Ex3_5 { public static void main(String[] args){ int n=1,sum=0; while(n<=100) { sum+=n; n++; } System.out.println("sum="+ ...
分类:其他好文   时间:2016-10-24 11:33:36    阅读次数:346
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!