#include<bits/stdc++.h> using namespace std; const int maxn=1e5+100; const int inf=1e9; int n,m,x; int dep[maxn];//节点在第几层 int num[maxn];//每一层的节点个数 int ...
分类:
其他好文 时间:
2021-02-15 11:49:10
阅读次数:
0
原题 1 class Solution: 2 def summaryRanges(self, nums: List[int]) -> List[str]: 3 left,right,lens,ans = 0,0,len(nums),[] 4 while left < lens: 5 right = ...
分类:
其他好文 时间:
2021-02-15 11:47:09
阅读次数:
0
An error occurred while installing rjb (1.6.4), and Bundler cannot continue. Make sure that `gem install rjb -v '1.6.4' --source 'https://gems.ruby-ch ...
分类:
其他好文 时间:
2021-02-10 13:00:46
阅读次数:
0
此博客链接:https://www.cnblogs.com/ping2yingshi/p/14391627.html 整数拆分 题目链接:https://leetcode-cn.com/problems/integer-break/ 题目 给定一个正整数 n,将其拆分为至少两个正整数的和,并使这些整 ...
分类:
其他好文 时间:
2021-02-09 12:30:48
阅读次数:
0
Trees are fundamental in many branches of computer science (Pun definitely intended). Current stateof-the art parallel computers such as Thinking Mach ...
分类:
其他好文 时间:
2021-02-08 12:29:55
阅读次数:
0
A. Space Navigation 签到题 #include<bits/stdc++.h> #include<iostream> #include<map> #include<cstdio> #include<cmath> #define mem(a,b) memset(a,b,sizeof a ...
分类:
其他好文 时间:
2021-02-06 12:18:29
阅读次数:
0
一、用户交互——Scanner: 1、Scanner:可以通过Scanner类来获取用户的输入 2、基本语法:Scanner s=new Scanner(System.in) 3、可以通过Scanner类的next()与nextLine()方法获取输入的字符串,在读取前,一般使用hasNext()与 ...
分类:
编程语言 时间:
2021-02-04 12:08:28
阅读次数:
0
Dos命令 打开cmd的方式 开始菜单里的命令提示符 运行中输入cmd shift+鼠标右键 地址栏cmd+空格+路径 管理员方式运行 开始菜单的命令提示符右击选择以管理员方式运行 常用的Dos命令 #盘符切换 盘符名+英文冒号 #查看当前目录下的所有文件 dir #切换目录 cd+(change ...
分类:
其他好文 时间:
2021-02-04 12:00:46
阅读次数:
0
package com.dai.linkedList; public class Josepfu { public static void main(String[] args) { // 构建环形链表和遍历是否ok CircleSingleLinkedList circleSingleLinked ...
分类:
其他好文 时间:
2021-02-02 10:33:04
阅读次数:
0
Security and Cryptography in Python - Attack on Caesar Cipher Crypto Rule #1(Kerckhoffs' Principle) Eve should not be able to break the ciphers even w ...
分类:
编程语言 时间:
2021-02-01 12:50:36
阅读次数:
0