上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 37 下一页
摘要: 我们知道权限对于使用者帐号来说是非常重要的,因为他可以限制使用者能不能读取/创建/删除/修改文件或目录! 在这一章我们介绍了很多文件系统的管理指令,第五章则介绍了很多文件权限的意义。在这个小节当中, 我们就将这两者结合起来,说明一下什么指令在什么样的权限下才能够运行吧!^_^ 一、让使用者能进入某目 阅读全文
posted @ 2017-09-02 16:52 immjc 阅读(395) 评论(0) 推荐(0) 编辑
摘要: 1. 首先在Linux虚拟机上安装ssh服务(以Ubuntu16.04 LTS为例)。 sudo apt-get install openssh-server 2. 测试ssh服务是否安装成功并且运行ssh sudo /etc/init.d/ssh start 3. 查看Linux的IP地址(ine 阅读全文
posted @ 2017-09-02 16:01 immjc 阅读(3611) 评论(0) 推荐(0) 编辑
摘要: 题目描述 给定一个有n个正整数的数组A和一个整数sum,求选择数组A中部分数字和为sum的方案数。当两种选取方案有一个数字的下标不一样,我们就认为是不同的组成方案。 输入描述: 输入为两行: 第一行为两个正整数n(1 ≤ n ≤ 1000),sum(1 ≤ sum ≤ 1000) 第二行为n个正整数 阅读全文
posted @ 2017-08-31 18:31 immjc 阅读(249) 评论(0) 推荐(0) 编辑
摘要: Given a positive integer num, write a function which returns True if num is a perfect square else False. Note: Do not use any built-in library functio 阅读全文
posted @ 2017-08-30 17:47 immjc 阅读(84) 评论(0) 推荐(0) 编辑
摘要: Given an array with n integers, your task is to check if it could become non-decreasing by modifying at most 1 element. We define an array is non-decr 阅读全文
posted @ 2017-08-30 12:19 immjc 阅读(208) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree, return all root-to-leaf paths. For example, given the following binary tree: All root-to-leaf paths are: 输出一个树的路径。使用递归的方法 阅读全文
posted @ 2017-08-29 15:58 immjc 阅读(131) 评论(0) 推荐(0) 编辑
摘要: Write a function that takes a string as input and reverse only the vowels of a string. Example 1:Given s = "hello", return "holle". Example 2:Given s 阅读全文
posted @ 2017-08-29 15:11 immjc 阅读(133) 评论(0) 推荐(0) 编辑
摘要: Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5,Return [ [1], [1,1], [1,2,1], [1,3,3,1], [1,4,6,4,1] ] 阅读全文
posted @ 2017-08-28 14:19 immjc 阅读(113) 评论(0) 推荐(0) 编辑
摘要: Given a non-negative integer represented as a non-empty array of digits, plus one to the integer. You may assume the integer do not contain any leadin 阅读全文
posted @ 2017-08-26 21:45 immjc 阅读(115) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this binary tree [1,2,2,3,4,4,3] is symmet 阅读全文
posted @ 2017-08-26 17:16 immjc 阅读(163) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 37 下一页