1.软件包分类 源码包 二进制包 2.源码包 优点 可修改 可自由选择需要的功能 软件是编译安装,更加适合系统,更加稳定和高效 卸载方便 缺点 # TODO ...
分类:
系统相关 时间:
2021-05-23 23:24:50
阅读次数:
0
题目 Atcoder 思路 代码 #include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N = 4000010, mod = 1e9 + 7; int n, k, fact ...
分类:
其他好文 时间:
2021-05-23 23:13:50
阅读次数:
0
C语言 使用long类型: #include "math.h" int reverse(int x){ int max = pow(2,31)-1; int min = pow(2,31)*-1; long n=0; while (x!=0){ n = n*10 + x%10; x = x/10; ...
分类:
编程语言 时间:
2021-05-23 23:09:40
阅读次数:
0
public class Test { public static void main(String[] args) { // \u000A String s = "Hello World"; String s = "1212"; System.out.println(s); } } 错误:java ...
分类:
编程语言 时间:
2021-05-23 23:09:26
阅读次数:
0
There is a function signFunc(x) that returns: 1 if x is positive. -1 if x is negative. 0 if x is equal to 0. You are given an integer array nums. Let ...
分类:
其他好文 时间:
2021-05-23 23:06:06
阅读次数:
0
/* Optional 容器类常用方法 Optional.of(T t) 创建一个Optional实例 Optional.empty() 创建一个空的Optional实例 Optional.ofNullable(T t) 若t不为null,则创建Optional实例,否则创建空实例 isPresen ...
分类:
编程语言 时间:
2021-05-04 16:30:31
阅读次数:
0
5种变得开心的方法 浪费时间,比如打游戏,什么都不干 停止思考,什么都不要想,刷视频 独处,不要跟别人分享你的痛苦,把自己的痛苦当作世界上最没有意义的事情 网上冲浪 列出痛苦清单,倾吐问题 我(曾经)想死 说不出口 坏主意,雇主想要正能量的阳光男孩 视频中的演讲者是演员,在扮演角色,可能在说谎话 还 ...
分类:
其他好文 时间:
2021-05-04 16:28:05
阅读次数:
0
# 闭包 def outer(x): print('outer:',x) def inner(): print('inner:', x) return inner # 外部函数return的一定是内部函数的函数名 def a(x): print('a:',x) def b(y): print('b: ...
分类:
编程语言 时间:
2021-05-04 16:12:49
阅读次数:
0
一、网络结构 二、代码 import os os.environ['TF_CPP_MIN_LOG_LEVEL']='2' import tensorflow as tf from tensorflow.keras import layers, optimizers, datasets, Sequen ...
分类:
其他好文 时间:
2021-05-04 15:53:44
阅读次数:
0