PBR下set ip next-hop和set ip default next-hop的区别
分类:
其他好文 时间:
2020-10-06 20:20:26
阅读次数:
28
class Solution { public ListNode addTwoNumbers(ListNode l1, ListNode l2) { if(l1==null){ return l2; } if(l2==null){ return l1; } int t=0; ListNode res ...
分类:
其他好文 时间:
2020-10-06 20:10:27
阅读次数:
24
题目链接:反转链表 方法一:递归解法 /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} ...
分类:
其他好文 时间:
2020-09-24 21:55:20
阅读次数:
37
参考文章:https://www.jianshu.com/p/728a993329b2 一、Charles下载 https://www.charlesproxy.com/download/ 二、Charles安装 一键next 三、Charles功能介绍 1.截取http和https网络封包。(主要 ...
分类:
移动开发 时间:
2020-09-24 21:07:44
阅读次数:
72
Calculate a+b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (unless there are less tha ...
分类:
其他好文 时间:
2020-09-24 00:03:11
阅读次数:
34
IP地址如图所示;AR1和AR2配置EBGP,AR4和AR5也配置EBGP,AR2和AR4配置IBGP;根据BGP选路原则4:(一条从IBGP学习到的路由发给BGP邻居之前,通过IGP必须知道该路由,即IGP与BGP同步)。在华为路由器上,默认是将BGP于IGP的同步检查关闭的,原因是为了实现IBGP路由的正常通告。但关闭同步会出现“路由黑洞”。因此有两种解决方案:1.将BGP路由引入IGP,2.
分类:
其他好文 时间:
2020-09-23 23:38:14
阅读次数:
35
转自:https://blog.51cto.com/liuxinya/354983 作为DBA我们经常需要对不同的数据库执行相同的查询,如果你的服务器上只有2个数据库当然可以手工依次执行,但如果一个数据库服务器上有几百个库呢,你是否觉得会崩溃呢。 解决方法: 1、使用维护计划创建一个维护任务,创建完... ...
分类:
数据库 时间:
2020-09-18 12:29:21
阅读次数:
70
1、Oracle 用连接工具(Navicat、SQL Developer)创建的用户名的字母要大写,否则无法连接,报ERROR ora-01017:invalid username/password 2、Oracle 主键自增设置过程中,创建完序列后,创建触发器成功,但是报错:编译错误 ,如何解决? ...
分类:
数据库 时间:
2020-09-18 12:27:41
阅读次数:
57
importjava.util.Scanner;/***k为尾部的0的个数*C[i]=A[i-2^k+1]+A[i-2^k+2]+...+A[i]*/publicclassTreeArray{privateintsize;privateintarr[];privateintc[];publicTreeArray(intsize){this.size=size;this.arr=newint[siz
分类:
编程语言 时间:
2020-09-18 03:56:02
阅读次数:
37
1、大数据的文件读取 ① 利用生成器generator ②迭代器进行迭代遍历:for line in file 2、迭代器和生成器的区别 1)迭代器是一个更抽象的概念,任何对象,如果它的类有next方法和iter方法返回自己本身。对于string、list、dict、tuple等这类容器对象,使用f ...
分类:
编程语言 时间:
2020-09-18 03:25:59
阅读次数:
43