上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 21 下一页
摘要: 可以在子类中通过基类名访问函数 // oj4.cpp : Defines the entry point for the console application.// #include "stdafx.h"#include<iostream>#include<vector>using namespa 阅读全文
posted @ 2016-12-12 22:43 simple_wxl 阅读(180) 评论(0) 推荐(0) 编辑
摘要: pading :SAME,VALID 区别 http://blog.csdn.net/mao_xiao_feng/article/details/53444333 tensorflow实现的各种算法:http://www.cnblogs.com/zhizhan/p/5971423.html 卷积神经 阅读全文
posted @ 2016-12-04 11:00 simple_wxl 阅读(410) 评论(0) 推荐(0) 编辑
摘要: 方法一: 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 阅读(32787) 评论(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 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 当是数组时候,是引用传递 阅读全文
posted @ 2016-11-29 14:05 simple_wxl 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 注意:python对圆括号()前面要加上转移字符\,还有点号也要加上转意字符\ 阅读全文
posted @ 2016-11-26 20:00 simple_wxl 阅读(2275) 评论(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 阅读(367) 评论(0) 推荐(0) 编辑
摘要: python从某个网站上面爬很多图片的url,主要是从百度风云榜上面爬的,男演员,女演员,男歌手,女歌手,总共200张 阅读全文
posted @ 2016-11-24 20:24 simple_wxl 阅读(561) 评论(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 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 数组中出现次数超过一半的数 阅读全文
posted @ 2016-11-23 16:07 simple_wxl 阅读(212) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 21 下一页