错误形势 在linux上使用less命令查看文件的时候,服务器会提示如下:"catalina.out" may be a binary file. See it anyway? [root@test logs]# less catalina.out "catalina.out" may be a b ...
分类:
系统相关 时间:
2020-08-11 15:52:29
阅读次数:
179
1.安装相关依赖库(工具包) yum install gcc patch libffi-devel python-devel zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel ...
分类:
编程语言 时间:
2020-08-10 16:15:09
阅读次数:
85
# sudo pip3.5 install docker-compose 安装docker-compose的时候报错如下: no previously-included directories found matching 'docs/_build' warning: no previously-i ...
分类:
系统相关 时间:
2020-08-10 14:26:22
阅读次数:
180
bash: ./arm-none-linux-gnueabi-gcc: No such file or directory解决方法 https://blog.csdn.net/eydwyz/article/details/98033852 ubuntu进行apt-get时候出现Package xxx ...
分类:
系统相关 时间:
2020-08-10 00:08:49
阅读次数:
72
99. 恢复二叉搜索树 题目来源:力扣(LeetCode)https://leetcode-cn.com/problems/recover-binary-search-tree 题目 二叉搜索树中的两个节点被错误地交换。 请在不改变其结构的情况下,恢复这棵树。 示例 1: 输入: [1,3,null ...
分类:
编程语言 时间:
2020-08-08 21:20:59
阅读次数:
83
Vertical Order Traversal of a Binary Tree (M) 题目 Given a binary tree, return the vertical order traversal of its nodes values. For each node at positi ...
分类:
其他好文 时间:
2020-08-08 17:30:42
阅读次数:
51
1.1 RabbitMQ安装 1.1.1 安装erlang环境 1.1.1.1 安装GCC GCC-C++ Openssl等模块 yum -y install make gcc gcc-c++ kernel-devel m4 ncurses-devel openssl-devel 1.1.1.2 安 ...
分类:
其他好文 时间:
2020-08-06 17:05:42
阅读次数:
71
题目描述: 给定一个二叉树,返回它的中序 遍历。 输入: [1,null,2,3] 1 \ 2 / 3 输出: [1,3,2] //go //* Definition for a binary tree node. type TreeNode struct { Val int Left *TreeN ...
分类:
其他好文 时间:
2020-08-06 09:31:39
阅读次数:
66