windows开发gin项目,最后生成linux 可以直接运行的文件 1.vs code 终端运行: PS L:\ginProject>set GOARCH=amd64PS L:\ginProject> set GOOS=linuxPS L:\ginProject> go build -o test ...
分类:
系统相关 时间:
2021-04-05 12:11:44
阅读次数:
0
难度 easy 翻转一棵二叉树。 示例: 输入: 4 / 2 7 / \ / 1 3 6 9 输出: 4 / 7 2 / \ / 9 6 3 1 备注: 这个问题是受到 Max Howell 的 原问题 启发的 : 解题思路:这道题比较简单,就是用递归的方式求解的,如果root是空节点或者没有子节点 ...
分类:
其他好文 时间:
2021-04-01 13:37:05
阅读次数:
0
df 列出文件系统整体的磁盘使用量 du检查当前磁盘空间的使用量 du -a 可以看到子文件夹 检查根目录下每个目录所占用的容量 [root@linuxvm home]# du -sm /* mount /dev/test /mnt/test 将外部设备test挂载在mnt下来实现访问 卸载umou ...
分类:
系统相关 时间:
2021-04-01 13:00:15
阅读次数:
0
有一个球是障碍物不能走,给你两个点,从起点到终点的最短路程是多少 ...
分类:
其他好文 时间:
2021-03-30 13:32:19
阅读次数:
0
给定一个二叉树的根节点 root ,返回它的 中序 遍历。使用递归、迭代、染色(迭代的另一种方法)三种方法实现。 ...
分类:
其他好文 时间:
2021-03-30 13:06:22
阅读次数:
0
1、 https://blog.csdn.net/msq16021/article/details/113617327 一开始都是这么简单的写,并无报错db = pymysql.connect("localhost", "root", "196811", "db_student",charset=" ...
分类:
数据库 时间:
2021-03-29 12:41:09
阅读次数:
0
用spyder运行正常,程序上传到服务器,添加计划任务,运行报错:ModuleNotFoundError: No module named 'selenium',实际上已经安装了。 搜索一番,有人说程序前面加上: import sys import os curPath = os.path.absp ...
分类:
其他好文 时间:
2021-03-29 11:49:17
阅读次数:
0
Description: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 t ...
分类:
其他好文 时间:
2021-03-18 14:37:13
阅读次数:
0
1. Install git yum install git 2. Install Vundle.vim 2.1 mkdir ~/.vim/bundle 2.2 git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vund ...
分类:
系统相关 时间:
2021-03-17 14:46:30
阅读次数:
0
leetcode题解——对称二叉树 题目如下 给定一个二叉树,检查它是否是镜像对称的。 解题思路 考察递归 对于一棵树,可以从外围到内围一层层判断是否镜像 外围对应的是左边结点的左孩子和右边结点的右孩子 内围对应的是左边节点的右孩子和右边结点的左孩子 /** * Definition for a b ...
分类:
其他好文 时间:
2021-03-17 14:29:11
阅读次数:
0