{ path: '/teacher', component: Layout, redirect: '/teacher/table', //重定向跳转 name: '讲师管理', meta: { title: '讲师管理', icon: 'example' }, //title页面标题,icon头像 ...
分类:
其他好文 时间:
2021-02-15 12:11:54
阅读次数:
0
Given the root of a binary tree, return the leftmost value in the last row of the tree. Example 1: Input: root = [2,1,3] Output: 1 Example 2: Input: r ...
分类:
其他好文 时间:
2021-02-10 12:54:11
阅读次数:
0
There are n gas stations along a circular route, where the amount of gas at the ith station is gas[i]. You have a car with an unlimited gas tank and i ...
分类:
其他好文 时间:
2021-02-08 11:44:08
阅读次数:
0
问题: 给定一组字符串数组, 有这些字符串合并构成不存在重复字符的“集连字符串” 求该集连字符串最大长度。 Example 1: Input: arr = ["un","iq","ue"] Output: 4 Explanation: All possible concatenations are ...
分类:
其他好文 时间:
2021-02-06 12:15:04
阅读次数:
0
配置多个git账户,以公司和个人为例 1.打开终端输入以下命令 //生成公司ssh-keygen ssh-keygen -t rsa -b 4096 -C "your_email@example.com" //生成个人ssh-keygen ssh-keygen -t rsa -C "your_ema ...
分类:
系统相关 时间:
2021-02-05 10:43:17
阅读次数:
0
仅供自己学习 题目: Invert a binary tree. Example: Input: 4 / \ 2 7 / \ / \1 3 6 9Output: 4 / \ 7 2 / \ / \9 6 3 1 思路: 这就是直接交换数据就可以了,可以前序遍历,后序遍历,中序遍历的交换 代码: 前序 ...
分类:
其他好文 时间:
2021-02-04 11:44:27
阅读次数:
0
父窗体js $('.mytable').on('click', '.editRow', function () { var table = $('#table_id_example').DataTable(); var rowData = table.rows({selected: true}).d ...
分类:
其他好文 时间:
2021-02-03 10:31:51
阅读次数:
0
备注:此处的hadoop版本是3.1.4 一、配置集群 1.1、配置yarn-site.xml <!-- Reducer获取数据的方式 --> <property> <name>yarn.nodemanager.aux-services</name> <value>mapreduce_shuffle ...
分类:
其他好文 时间:
2021-02-02 10:48:15
阅读次数:
0
A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromic number ...
分类:
其他好文 时间:
2021-02-01 12:26:52
阅读次数:
0
Web Components 是一套不同的技术,允许您创建可重用的定制元素(它们的功能封装在您的代码之外)并且在您的web应用中使用它们。 它由三项主要技术组成,它们可以一起使用来创建封装功能的定制元素,可以在你喜欢的任何地方重用,不必担心代码冲突。 Custom elements(自定义元素):一 ...
分类:
Web程序 时间:
2021-01-30 11:55:08
阅读次数:
0