关键: position: fixed; wxml: <navigator url="/pages/issue/index"><image class='img' src='/assets/images/Home/add.png' bindtap='add'></image></navigator> ...
分类:
微信 时间:
2021-06-06 18:57:59
阅读次数:
0
LeetCode 2. Add Two Numbers(两数相加) 题目 链接 https://leetcode-cn.com/problems/add-two-numbers 问题描述 给你两个 非空 的链表,表示两个非负的整数。它们每位数字都是按照 逆序 的方式存储的,并且每个节点只能存储 一位 ...
分类:
其他好文 时间:
2021-06-06 18:53:03
阅读次数:
0
location / { add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Methods 'GET,POST'; add_header Access-Control-Allow-Headers 'DN ...
分类:
其他好文 时间:
2021-06-06 18:45:56
阅读次数:
0
SSH无密登录配置 1)配置ssh (1)基本语法 ssh另一台电脑的ip地址 (2)ssh连接时出现Host key verification failed的解决方法 ssh hadoop103 出现: The authenticity of host 'hadoop103 (192.168.18 ...
分类:
其他好文 时间:
2021-06-05 18:38:40
阅读次数:
0
0.注意 任何一条sql语句都是以 ”;“分号结尾 sql语句不区分大小写 1.插入数据 insert into 表名 (列名1, 列名2, 列名3, ······) values (值1, 值2, 值3, ······); insert into 表名 values (值1, 值2, 值3, ·· ...
分类:
数据库 时间:
2021-06-05 18:37:04
阅读次数:
0
前言——什么是完全二叉树 定义: 一棵深度为k的有n个结点的二叉树,对树中的结点按从上至下、从左到右的顺序进行编号,如果编号为i(1≤i≤n)的结点与满二叉树中编号为i的结点在二叉树中的位置相同,则这棵二叉树称为完全二叉树。 性质: 1、具有n个结点的完全二叉树的深度(注:[ ]表示向下取整) 2、 ...
分类:
其他好文 时间:
2021-06-05 18:21:49
阅读次数:
0
在Windows中,有时特定的ip只能访问特定的网络,就需要进行路由的转发。 1.查询路由信息 route print -4 是查询IPv4的路由信息,若要查询所有的,把`-4`去掉即可。 2.添加路由 route -p add 目的ip mask 子网掩码 下一跳ip 例如把目的为:10.100. ...
linux防火墙使用以及配置 Centos 7 firewall : 1、firewalld的基本使用 启动: systemctl start firewalld 关闭: systemctl stop firewalld 查看状态: systemctl status firewalld 开机禁用 : ...
分类:
系统相关 时间:
2021-06-04 19:47:34
阅读次数:
0
EnableAutoConfiguration This class-level annotation tells Spring Boot to “guess” how you want to configure Spring, based on the jar dependencies that ...
分类:
其他好文 时间:
2021-06-04 19:47:18
阅读次数:
0
直接上代码 void Add(int a, double b, short c, const char * f) { std::cout << f << a << ", " << b << ", " << c << ";\n"; } void *p = nullptr; template <type ...
分类:
编程语言 时间:
2021-06-04 19:35:50
阅读次数:
0