11 2016 档案

摘要:方法一: ArrayList<Integer> mycopy=new ArrayList<Integer>(); mycopy=(ArrayList<Integer>) vec.clone(); 方法二: ArrayList<Integer> mycopy=new ArrayList<Integer 阅读全文
posted @ 2016-11-29 15:48 simple_wxl 阅读(32807) 评论(0) 推荐(1) 编辑
摘要:Queue<TreeNode> que=new LinkedList<>(); 用linkedlist实现队列,offer,poll进出队列,peek对列顶部元素 python中import Queue que=Queue.Queue();//fifo队列,还有其它的2、class Queue.Li 阅读全文
posted @ 2016-11-29 15:47 simple_wxl 阅读(304) 评论(0) 推荐(0) 编辑
摘要:当是数组时候,是引用传递 阅读全文
posted @ 2016-11-29 14:05 simple_wxl 阅读(286) 评论(0) 推荐(0) 编辑
摘要:注意:python对圆括号()前面要加上转移字符\,还有点号也要加上转意字符\ 阅读全文
posted @ 2016-11-26 20:00 simple_wxl 阅读(2284) 评论(0) 推荐(0) 编辑
摘要:重定向标准输出,标准错误到同一个文件 cat foo > foo.txt 2>&1或cat foo &> foo.txt vim常用命令 移动光标: ctrl+f 向上翻页 ctrl+b 向下翻页 数字0 移动到当前行第一个字符 shift +$ 移动到当前行最后一个字符 G 移动到最后一行 gg 阅读全文
posted @ 2016-11-25 10:51 simple_wxl 阅读(368) 评论(0) 推荐(0) 编辑
摘要:python从某个网站上面爬很多图片的url,主要是从百度风云榜上面爬的,男演员,女演员,男歌手,女歌手,总共200张 阅读全文
posted @ 2016-11-24 20:24 simple_wxl 阅读(566) 评论(0) 推荐(0) 编辑
摘要:import java.awt.print.Printable; import java.beans.VetoableChangeListenerProxy; import java.lang.reflect.Array; import java.text.DateFormatSymbols; import java.text.spi.NumberFormatProvider; import j... 阅读全文
posted @ 2016-11-23 16:09 simple_wxl 阅读(305) 评论(0) 推荐(0) 编辑
摘要:数组中出现次数超过一半的数 阅读全文
posted @ 2016-11-23 16:07 simple_wxl 阅读(214) 评论(0) 推荐(0) 编辑
摘要:#include<iostream>#include<vector>#include<math.h>#include<string>#include<algorithm>using namespace std;#include<map>#include<stack>#include<unordere 阅读全文
posted @ 2016-11-23 15:46 simple_wxl 阅读(822) 评论(0) 推荐(0) 编辑
摘要:'(0, 2)','(4, 6)','(8, 12)','(15, 20)','(25, 32)','(38, 43)','(48, 53)','(60, 100)' 卷积-relu-pooling-Local Response Normalization (LRN)层 卷积-relu-poolin 阅读全文
posted @ 2016-11-23 10:10 simple_wxl 阅读(829) 评论(0) 推荐(0) 编辑
摘要:/*o(n)的堆化方法*/ void myjust(vector<int>& A,int i){ int l=i*2+1; int r=i*2+2; int minn=i; if(l<A.size()&&A[l]<A[minn]) minn=l; if(r<A.size()&&A[r]<A[minn 阅读全文
posted @ 2016-11-22 16:42 simple_wxl 阅读(263) 评论(0) 推荐(0) 编辑
摘要:python列表推导式 list=[[0 for i in xrange(3)] for j in xrange(4)] 二维数组 g=lambda x,y:x*y; print g(2,9); 阅读全文
posted @ 2016-11-16 15:15 simple_wxl 阅读(1289) 评论(0) 推荐(0) 编辑
摘要:string 和int之间的转换 string转换成int :Integer.valueOf("12") int转换成string : String.valueOf(12) char和int之间的转换 首先将char转换成string String str=String.valueOf('2') I 阅读全文
posted @ 2016-11-15 15:50 simple_wxl 阅读(231588) 评论(2) 推荐(6) 编辑
摘要:java中 Iterator it=wordsmap.entrySet().iterator(); while(it.hasNext()) { Map.Entry<String,Integer> myentry=(Map.Entry<String,Integer>)it.next(); Object 阅读全文
posted @ 2016-11-14 09:10 simple_wxl 阅读(6970) 评论(0) 推荐(0) 编辑
摘要:hashset中的元素 treeset中的元素要实现comparable接口 阅读全文
posted @ 2016-11-11 15:27 simple_wxl 阅读(307) 评论(0) 推荐(0) 编辑
摘要:x=[1,2,3] x.sort()对的,x这个都变了 y=x.sort()错误 y=sorted(x)对的,x拍好序的一个副本 python中用匿名函数和自定义函数排序:(很奇怪的是比较函数返回的是两个值相减就可以,比较大小就不可以 class Interval(object): def __in 阅读全文
posted @ 2016-11-11 09:31 simple_wxl 阅读(921) 评论(0) 推荐(0) 编辑
摘要:int(x [,base ]) 将x转换为一个整数 long(x [,base ]) 将x转换为一个长整数 float(x ) 将x转换到一个浮点数 complex(real [,imag ]) 创建一个复数 str(x ) 将对象 x 转换为字符串 repr(x ) 将对象 x 转换为表达式字符串 阅读全文
posted @ 2016-11-09 14:20 simple_wxl 阅读(501583) 评论(3) 推荐(10) 编辑
摘要:来源于:http://www.cnblogs.com/hasse/p/5023392.html 这几天看到类在继承时会用到this和super,这里就做了一点总结,与各位共同交流,有错误请各位指正~ this this是自身的一个对象,代表对象本身,可以理解为:指向对象本身的一个指针。 this的用 阅读全文
posted @ 2016-11-07 14:46 simple_wxl 阅读(832) 评论(0) 推荐(0) 编辑
摘要://JAVA中对arrayList的初始化,能够分配空间,不能之间让一个ArrayList赋值给另外一个ArrayList,这样是引用赋值,当一个改变时候,另外一个也改变 List<String> tmp = new ArrayList<String>(Arrays.asList(new Strin 阅读全文
posted @ 2016-11-06 15:31 simple_wxl 阅读(517) 评论(0) 推荐(0) 编辑
摘要:POJ 1287 B - Networking Time Limit:1000MS Memory Limit:10000KB 64bit IO Format:%lld & %llu Submit Status POJ 1287 B - Networking Submit Status Descrip 阅读全文
posted @ 2016-11-01 15:11 simple_wxl 阅读(195) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示