上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 64 下一页
摘要: cat命令 连接文件并打印到标准输出设备上,cat经常用来显示文件的内容。 注意:当文件较大时,文本在屏幕上迅速闪过(滚屏),用户往往看不清所显示的内容。因此,一般用more等命令分屏显示。 为了控制滚屏,可以按Ctrl+S键,停止滚屏;按Ctrl+Q键可以恢复滚屏。按Ctrl+C(中断)键可以终止 阅读全文
posted @ 2017-12-19 16:10 __Meng 阅读(5868) 评论(0) 推荐(0) 编辑
摘要: 文件和目录管理 find命令 (在指定目录下查找文件) grep命令 (文本搜索工具) cat命令 (连接文件并打印到标准输出设备上,显示文件的内容) nl命令 (计算文件内容的行号) 目录基本操作 cd命令 (切换用户当前目录) ls命令 (显示目录内容列表) cp命令 (将源文件或目录复制到目标 阅读全文
posted @ 2017-12-19 14:58 __Meng 阅读(191) 评论(1) 推荐(0) 编辑
摘要: find命令用来在指定目录下查找文件。任何位于参数之前的字符串都将被视为欲查找的目录名。 如果使用该命令时,不设置任何参数,则find命令将在当前目录下查找子目录与文件。并且将查找到的子目录和文件全部进行显示。 -amin<分钟>:查找在指定时间曾被存取过的文件或目录,单位以分钟计算; -anewe 阅读全文
posted @ 2017-12-19 11:04 __Meng 阅读(292) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to root). For 阅读全文
posted @ 2017-12-19 09:58 __Meng 阅读(137) 评论(0) 推荐(0) 编辑
摘要: grep(global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。 -a 不要忽略二进制数据。 -A<显示列数> 除了显示符合 阅读全文
posted @ 2017-12-18 11:33 __Meng 阅读(5446) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary tree is defined as a binary tree in which the dept 阅读全文
posted @ 2017-12-18 09:59 __Meng 阅读(129) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shortest path from the root node down to the nearest l 阅读全文
posted @ 2017-12-17 14:09 __Meng 阅读(169) 评论(0) 推荐(0) 编辑
摘要: Java泛型(generics)是JDK 5中引入的一个新特性,允许在定义类和接口的时候使用类型参数(type parameter)。声明的类型参数在使用时用具体的类型来替换。 泛型的本质是参数化类型,也就是说所操作的数据类型被指定为一个参数。 创建集合时就指定集合元素的类型,该集合只能保存其指定类 阅读全文
posted @ 2017-12-16 20:15 __Meng 阅读(318) 评论(0) 推荐(0) 编辑
摘要: Java为每种基本数据类型都提供了对应的包装器类型 从Java SE5开始就提供了自动装箱的特性,如果要生成一个数值为10的Integer对象,只需要这样就可以了: Integer i = 10; 这个过程中会自动根据数值创建对应的 Integer对象,这就是装箱。 实际上,执行上面那句代码的时候, 阅读全文
posted @ 2017-12-16 19:43 __Meng 阅读(350) 评论(0) 推荐(1) 编辑
摘要: Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum. F 阅读全文
posted @ 2017-12-16 18:43 __Meng 阅读(134) 评论(0) 推荐(0) 编辑
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 64 下一页