ColorCostDP.hpp // // Created by Administrator on 2021/7/21. // #ifndef C__TEST01_COLORCOSTDP_HPP #define C__TEST01_COLORCOSTDP_HPP #include <vector> ...
分类:
其他好文 时间:
2021-07-23 17:43:16
阅读次数:
0
Linux系统调用 原文:https://www.cnblogs.com/ycw0923/p/12913925.html 一.为何要有系统调用 unix内核分为用户态和内核态,在用户态下程序不内直接访问内核数据结构或者内核程序,只有在内核态下才可访问。请求内核服务的进程使用系统调用的特殊机制,每个系 ...
分类:
系统相关 时间:
2021-06-29 15:58:17
阅读次数:
0
数字转换为中文大写方法 例如: int num = 725; string result=MoneyToCharacter(num); result输出结果为“柒佰叁拾伍元整” 1 private string MoneyToCharacter(decimal Money) 2 { 3 string ...
一、报错现象 这是一个在使用 DB2数据库过程中比较常见的错误, 报错信息如下 Exception stack trace: com.ibm.db2.jcc.am.SqlException: DB2 SQL Error: SQLCODE=-805, SQLSTATE=51002, SQLERRMC= ...
分类:
数据库 时间:
2021-06-22 18:20:48
阅读次数:
0
// break 结束整个循环 // continue 跳过当前循环 (跳过一次循环,后面会继续) // break 可以在循环和switch语句中使用 // continue 只能在循环中使用 // break 结束整个switch语句 // for (var i = 0; i < 10; i++ ...
分类:
其他好文 时间:
2021-06-21 20:23:04
阅读次数:
0
Solution 对于兔子们按照颜色为第一关键字 , 位置为第二关键字排序 , 查询个数时直接二分 , 相同颜色的修改不用管 , 不同颜色的修改不会改变统一颜色内的大小顺序 , 直接修改不会影响有序性 . 时间复杂度 \(O(nlogn)\) Code #include<iostream> #inc ...
分类:
其他好文 时间:
2021-06-21 20:02:00
阅读次数:
0
##break和continue关键字的使用 ||使用范围|循环中使用的作用点(不通点)|相同点| |:-:|:-:|:-:|:-:| |break|switch-case中|结束当前循环|关键字后面不能声明执行语句| |break|循环结构中|结束当前循环|关键字后面不能声明执行语句| |cont ...
分类:
其他好文 时间:
2021-06-17 17:02:03
阅读次数:
0
###重置数列 AcWing 3661 https://www.acwing.com/problem/content/3664/ 纯暴力1-100 #include <iostream> #include <cstring> #include <algorithm> using namespace ...
分类:
其他好文 时间:
2021-06-13 10:47:34
阅读次数:
0
#include <cmath> #include <queue> #include <vector> #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #define ZYC using #d ...
分类:
其他好文 时间:
2021-06-13 09:59:25
阅读次数:
0
配置环境:gerrit 192.168.1.100gitlab 192.168.1.1011.创建秘钥 [root@gerrit ~]# ssh-keygen -m PEM -t rsa 2.添加hosts 解析 [root@gerrit ~]#echo "192.168.1.101 gitlab" ...
分类:
其他好文 时间:
2021-06-06 19:34:13
阅读次数:
0