摘要:
/ : 文件系统的入口,最高一级目录 /bin: 存放二进制可执行文件(ls、cat、mkdir 等),常用命令一般都在这里; /etc: 存放系统管理和配置文件; /home: 存放所有用户文件的根目录,是用户主目录的基点,比如用户 user 的主目录就是/home/user; /usr : 用于 阅读全文
摘要:
答案转载自:https://www.2cto.com/kf/201506/408372.html 裁判测试程序样例: 错误解法: 这种判断方法是错误的,如下面例子所示,节点4处于根节点3的左子树中,但是函数检测到这棵树是BST. 正确解法: 阅读全文
摘要:
裁判测试程序样例: 阅读全文
摘要:
裁判测试程序样例: 阅读全文
摘要:
裁判测试程序样例: 解题思路: Q->Front指向首元素位置,Q->Count作为偏移量 阅读全文
摘要:
1 class Solution { 2 public: 3 bool isPalindrome(ListNode* head) { 4 deque<int> d1, d2; 5 ListNode* p = head; 6 while (p != NULL) 7 { 8 d1.push_back(p 阅读全文
摘要:
1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int val; 5 * ListNode *next; 6 * ListNode(int x) : val(x), next(NULL) {} 7 * }; 阅读全文
摘要:
给定一个只包括 '(',')','{','}','[',']' 的字符串,判断字符串是否有效。 有效字符串需满足: 左括号必须用相同类型的右括号闭合。 左括号必须以正确的顺序闭合。 注意空字符串可被认为是有效字符串。 示例 1: 输入: "()" 输出: true 示例 2: 输入: "()[]{} 阅读全文
摘要:
1 #include 2 3 using namespace std; 4 5 int main() 6 { 7 int n,c = 0,m; 8 cin>>n>>m; 9 string s; 10 while(n--) 11 { 12 cin>>s; 13 c = 0; 14 ... 阅读全文