$\mathcal Link. 在一个含 \(n\) 个结点的有向图中,存在边 \(\lang i,i+1,0\rang\),它们不能被删除;还有边 \(\lang i,j,-1\rang~(i<j)\) 和 \(\lang i,j,1\rang~(i>j)\),删除一条边的代价为 \(a_{i,j ...
分类:
其他好文 时间:
2021-07-01 16:38:11
阅读次数:
0
循环语句(重复做某件事) 1.for 循环代码块一定的次数 循环语句语法 for(初始值; 范围; 循环方式){ 执行代码块也叫循环体 } 代码块:多行代码执行的地方。 2.while 当指定条件为true时,循环指定的代码块 var a=初始值; while(范围){ 循环体; 循环方式; } w ...
分类:
编程语言 时间:
2021-07-01 16:37:19
阅读次数:
0
#region 毫秒延时 界面不会卡死 public static void Delay(int mm) { DateTime current = DateTime.Now; while (current.AddMilliseconds(mm) > DateTime.Now) { Applicati ...
分类:
移动开发 时间:
2021-07-01 16:29:40
阅读次数:
0
基础类型定义: boolean:布尔类型定义 true/false:布尔值 byte:字节值定义 char:字符型定义 double:浮点数定义 float:浮点数定义 int:整形定义 long:长整型的定义 short:短整型的定义 null:空对象或空字符 流程类型定义: if/else:满足 ...
分类:
编程语言 时间:
2021-06-30 18:34:34
阅读次数:
0
#!/usr/bin/env bash __Author__="liy" # 发送钉钉告警 function DingDing(){ curl 'https://oapi.dingtalk.com/robot/send?access_token=xxxxxxxxxxxxxxxxxxxxxxxxxxx ...
分类:
其他好文 时间:
2021-06-30 18:14:38
阅读次数:
0
@(Thread) 1.什么是进程?什么是线程? 进程是一个应用程序/软件 线程是一个进程中的执行单元/执行场景 一个进程可以启动多个线程 线程之间内存独立不共享 进程之间堆内存和方法区内存共享,栈内存独立 2.对于单核的CPU来说,实际上不存在多线程并发,而是多个线程切换的很快,让人有种并发的错觉 ...
分类:
编程语言 时间:
2021-06-30 17:39:41
阅读次数:
0
Js得到选中的文字 (function getSelectionText() { if (window.getSelection) { return window.getSelection().toString(); } else if (document.selection && document ...
分类:
其他好文 时间:
2021-06-28 21:07:38
阅读次数:
0
简介 对cmp的理解能力 常规题 code #include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; struct Student{ int idx; int n ...
分类:
其他好文 时间:
2021-06-28 21:01:31
阅读次数:
0
单片机十天征服你-第二讲-流水灯设计、蜂鸣器发声、继电器设计 ## 各大品牌官网申请免费样片 流水灯设计 //二极管闪烁 #include<reg52.h> sbit p1_1=P1^0; unsigned int a; void main() { while(1) { a=50000; p1_1= ...
分类:
其他好文 时间:
2021-06-28 21:00:26
阅读次数:
0
题目链接:用最少数量的箭引爆气球 题目描述: 题解: class Solution { public: static bool cmp(vector<int> &a, vector<int> &b) //按右边界排序 { return a[1] < b[1]; } int findMinArrowS ...
分类:
其他好文 时间:
2021-06-28 20:44:14
阅读次数:
0