Suppose that all the keys in a binary tree are distinct positive integers. Given the postorder and inorder traversal sequences, you are supposed to ou ...
分类:
其他好文 时间:
2018-08-19 15:46:04
阅读次数:
139
1,jsp 1,概念 2,jsp的三种方式 out.write(65);字符 字符串 字符数组 out.write(65);字符 字符串 字符数组 1) <% 1) <% 中间写java代码 中间写java代码 out.println("任何类型"); out.println("任何类型"); ou ...
分类:
Web程序 时间:
2018-08-04 00:36:22
阅读次数:
236
http://acm.hdu.edu.cn/showproblem.php?pid=2123 Problem Description In this problem you need to make a multiply table of N * N ,just like the sample ou ...
分类:
其他好文 时间:
2018-08-03 01:15:55
阅读次数:
272
首先概述一下IO是什么 你想象 并思考一下 当你编辑一个文本文件,忘记了ctrl+s而关闭了 是不是很蛋疼,当你电脑上插入一个U盘 把一个视频从U盘拷入你电脑硬盘里。这些数据都是在那些设备上? 我们可以把这种数据的传输 看作是一种数据的流动,按照流动的方向,以内存为基准,分为输入input和输出ou ...
分类:
编程语言 时间:
2018-07-29 21:16:29
阅读次数:
160
class Demo5 { public static void main(String[] args) { int[] a = new int[]{133,24,151,253,654,37,24}; int key = 24; int index = find(a,key); System.ou... ...
分类:
编程语言 时间:
2018-07-27 10:12:27
阅读次数:
127
1、查看当前所在的工作目录的全路径:pwd 2、时间: 3、查看有谁在线(哪些人登陆到了服务器) 4、last 查看最近的登陆历史记录 5、清屏:clear ## 或者用快捷键 ctrl + l 6、退出当前进程:ctrl+c 有些程序也可以用q键退出 7、echo相当于java中System.ou ...
分类:
系统相关 时间:
2018-07-23 18:04:37
阅读次数:
168
package True; public class Test { public static void main(String[] args) { User u1=new User("admin","123"); User u2=new User("admin","123"); System.ou ...
分类:
编程语言 时间:
2018-07-15 22:14:51
阅读次数:
223
public class Test2 { public static void main(String[] s) throws IOException { List<User> list = new ArrayList<User>(); String aa = ""; try { System.ou ...
分类:
其他好文 时间:
2018-07-05 19:44:33
阅读次数:
459
public class BubbleSort { public static void main(String[] args) { int[] arr={6,3,8,2,9,1}; System.out.println("排序前数组为:"); for(int num:arr){ System.ou ...
分类:
编程语言 时间:
2018-07-04 16:09:10
阅读次数:
132
一、基础知识(一) filter: padding:在图像卷积操作之前,沿着图像边缘用0进行图像填充。padding会影响输出图像大小。 stride(卷积步长):卷积步长是指过滤器在图像上滑动的距离 input: n*n, filter: f*f, stride: s, padding: p ou ...
分类:
其他好文 时间:
2018-06-25 22:50:54
阅读次数:
271