约数和定理: 对于一个大于1正整数n可以分解质因数:n=p1^a1*p2^a2*p3^a3*…*pk^ak,则由约数个数定理可知n的正约数有(a?+1)(a?+1)(a?+1)…(ak+1)个,那么n的(a?+1)(a?+1)(a?+1)…(ak+1)个正约数的和为f(n)=(p1^0+p1^1+p ...
分类:
其他 时间:
2021-04-07 09:30:13
收藏:
0 评论:
0 赞:
0 阅读:
25
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style> #imgbox{ background: url(img/1.jpg) no-repeat; background-size: 100% 100% ...
分类:
其他 时间:
2021-04-07 09:29:59
收藏:
0 评论:
0 赞:
0 阅读:
15
方法一:命令行 在命令行输入DDUNITS回车,出现单位设置窗口 方法二:利用菜单栏 ...
分类:
其他 时间:
2021-04-07 09:29:39
收藏:
0 评论:
0 赞:
0 阅读:
21
正题 题目链接:https://darkbzoj.tk/problem/4025 题目大意 $n$个点$m$条边,每条边会在一个$T$以内的时间段内出现,对于任意一个$T$以内的时刻求图是否是一个二分图。 \(1\leq n,T\leq 10^5,1\leq m\leq 2\times 10^5\) ...
分类:
其他 时间:
2021-04-07 09:29:22
收藏:
0 评论:
0 赞:
0 阅读:
24
摘要:排列组合,考察递归和回溯思想的运用 全排列 import java.util.*; public class HelloWorld { /** * 递归求全排列 */ static int[] arr = new int[]{1,2,3}; static List<List<Integer>> ...
分类:
其他 时间:
2021-04-07 09:29:06
收藏:
0 评论:
0 赞:
0 阅读:
22
Given an m x n board of characters and a list of strings words, return all words on the board. Each word must be constructed from letters of sequentia ...
分类:
其他 时间:
2021-04-07 09:28:50
收藏:
0 评论:
0 赞:
0 阅读:
20
默认分支在 GitHub 中比较重要,通常默认分支能够确定你检出的分支在那个分支上面。 在 GitHub 中是可以对默认分支进行修改的。 选择 GitHub 中的设置 然后在设置后的选择中,选择分支。 在接下来的界面中,选择分支切换按钮,然后在弹出的界面中选择需要选择默认的分支名称。 通过这个选择可 ...
分类:
其他 时间:
2021-04-07 09:28:32
收藏:
0 评论:
0 赞:
0 阅读:
23
#include <stdio.h> int main() { printf("123\n"); printf("%c\n",'\177'); printf("\t\ta\n"); printf("abcde\b \b"); getchar(); } ...
分类:
编程语言 时间:
2021-04-07 09:28:13
收藏:
0 评论:
0 赞:
0 阅读:
22
1/Anaconda官方网站:https://www.anaconda.com/products/individual#download-section 不用另外安装python,Anaconda指的是一个开源的Python发行版本,其包含了conda、Python等180多个科学包及其依赖项,是一 ...
分类:
其他 时间:
2021-04-07 09:27:59
收藏:
0 评论:
0 赞:
0 阅读:
168
转发的大神的:https://blog.csdn.net/flyingaga/article/details/63691634 1.webapps目录中的项目 在 Tomcat 8.0 的 tomcat/webapps 目录中,含有 5 个 Tomcat 自带的 Web 项目,如下所示: docs有 ...
分类:
移动平台 时间:
2021-04-07 09:27:41
收藏:
0 评论:
0 赞:
0 阅读:
16
题解 class CQueue { Stack<Integer> a, b; public CQueue() { a = new Stack<Integer>(); b = new Stack<Integer>(); } public void appendTail(int value) { a.p ...
分类:
其他 时间:
2021-04-07 09:27:28
收藏:
0 评论:
0 赞:
0 阅读:
22
出现问题的原因:虚拟机被强制关机,eclipse没有正常关闭 1、上网查询了各种方案,都没有办法解决问题。(这个问题主要是工作空间的问题) 解决问题的方法: 1、把之前的工作区域名称改掉,把工作区域的项目,移到一个新的文件夹里,再把这个文件夹作为工作区域即可。 2、还有一种解决方案,但我没试,就是把 ...
分类:
系统服务 时间:
2021-04-07 09:27:16
收藏:
0 评论:
0 赞:
0 阅读:
22
1、设置主机名称: #hostnamectl set-hostname centost7 #su 2、更改ip获取方式为静态设置以及绑定主机名+ip到 /etc/hosts #vi /etc/sysconfig/network-scripts/ipcfg-ens33 TYPE="Ethernet" ...
分类:
系统服务 时间:
2021-04-07 09:26:51
收藏:
0 评论:
0 赞:
0 阅读:
37
通过这篇文章将wsl设置为默认的终端:Windows Subsystem for Linux Installation Guide for Windows 10 1、查看wsl子系统: PS C:\WINDOWS\system32> .\wslconfig.exe /list 适用于 Linux 的 ...
分类:
Web开发 时间:
2021-04-07 09:26:35
收藏:
0 评论:
0 赞:
0 阅读:
21
下面我们看主线程如何捕获子线程的异常 例:1.5.4import java.lang.Thread.UncaughtExceptionHandler;class ThreadMark_to_win extends Thread{ public void run() { for(int i=0;i<3 ...
分类:
编程语言 时间:
2021-04-07 09:26:21
收藏:
0 评论:
0 赞:
0 阅读:
19
部署nginx #1.先去查看仓库有没有镜像 root@fanwd-virtual-machine:/home# docker search nginx NAME DESCRIPTION STARS OFFICIAL AUTOMATED nginx Official build of Nginx. ...
分类:
其他 时间:
2021-04-07 09:26:09
收藏:
0 评论:
0 赞:
0 阅读:
22
一、文件和目录 https://mp.weixin.qq.com/s/6WJjoBdIcfwubVhqvWH7qA 1. cd命令 (它用于切换当前目录,它的参数是要切换到的目录的路径,可以是绝对路径,也可以是相对路径) cd /home 进入 '/ home' 目录 cd .. 返回上一级目录 c ...
分类:
系统服务 时间:
2021-04-07 09:25:53
收藏:
0 评论:
0 赞:
0 阅读:
22
1 package com.kuang.test; 2 3 import org.junit.Test; 4 5 import java.sql.Connection; 6 import java.sql.DriverManager; 7 import java.sql.SQLException; ...
分类:
数据库技术 时间:
2021-04-07 09:25:37
收藏:
0 评论:
0 赞:
0 阅读:
28
题解 直接遍历一遍字符串,使用一个StringBuilder res(使用这个效率高一点)来存储答案,当遇到空格的时候,直接res.append("%20"),其余的直接append就行了 代码如下 class Solution { public String replaceSpace(String ...
分类:
其他 时间:
2021-04-07 09:25:20
收藏:
0 评论:
0 赞:
0 阅读:
22
##添加更新源 在~目录下,创建.pip/pip.conf文件,添加源 [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple ###windows: 直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,在p ...
分类:
其他 时间:
2021-04-07 09:25:07
收藏:
0 评论:
0 赞:
0 阅读:
20