摘要: 8.1基本介绍 画一个示意图,帮助理解用户管理的规则。 说明 Linux 系统是一个多用户多任务的操作系统,任何一个要使用系统资源的用户,都必须首先向 系统管理员申请一个账号,然后以这个账号的身份进入系统。 Linux 的用户需要至少要属于一个组。 8.2添加用户 8.2.1基本语法 useradd 阅读全文
posted @ 2019-08-13 23:23 hellozwx 阅读(654) 评论(0) 推荐(0) 编辑
摘要: public class BST<E extends Comparable<E>>{ private class Node{ public E e; public Node left, right; public Node(E e){ this.e = e; this.left = null; th 阅读全文
posted @ 2019-08-13 14:05 hellozwx 阅读(187) 评论(0) 推荐(0) 编辑