<!DOCTYPE html><html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <title></title> <style> .left div, .right div { wid ...
分类:
其他好文 时间:
2020-09-17 17:59:12
阅读次数:
29
void reverseString(char* s, int sSize){ int start =0,end = sSize-1,temp; while(start < end) temp = s[start],s[start++] = s[end],s[end--] = temp; } ...
分类:
其他好文 时间:
2020-09-17 17:36:43
阅读次数:
24
17. 电话号码的字母组合 排列题目,很容易想到回溯。下面是ac代码。 class Solution { private: vector<string> vstrs = {"","","abc","def","ghi","jkl","mno","pqrs","tuv","wxyz"}; public ...
分类:
其他好文 时间:
2020-09-17 17:29:41
阅读次数:
23
QSS中 QLabel { background-color: rgba(255, 255, 224, 50%); border: 2px solid black; } 0%表示全透明,100%表示不透明 ...
分类:
其他好文 时间:
2020-09-17 17:29:08
阅读次数:
20
History对象的方法 back:加载上一个URL forward:加载下一个URL go:前进至指定的URL( go(1)等同于forward go(-1)等同于back() ) Location对象的属性和方法: href:获取当前浏览器的URL reload():重载当前URL <!DOCT ...
分类:
编程语言 时间:
2020-09-17 17:03:42
阅读次数:
40
Div3,享受俯冲的快感 A: 给两个整数$a$和$b$,你可以让$a \pm k (k \in [1, 10]) $,求最少操作次数。 签到题,直接给Code吧: /* ID: Loxilante Time: 2020/09/04 Prog: CF1409A Lang: cpp */ #ifdef ...
分类:
其他好文 时间:
2020-09-17 16:39:43
阅读次数:
24
@media print { .iconClass { background: black !important; -webkit-print-color-adjust: exact; } } ...
分类:
其他好文 时间:
2020-09-17 15:34:51
阅读次数:
50
take up 占用,接受,培养,开始对…产生兴趣 take off 起飞,脱掉,取消,模仿 take on 承担(责任),雇佣,呈现,接纳(学生) take down 放下,取下,拆掉,记下 take over 接管 take back 归还 take in 吸收,留宿…,注意到,完全明白 tak ...
分类:
其他好文 时间:
2020-09-17 14:13:34
阅读次数:
30
case when info.LEASE_WAY='OPERATING-LEASE' then '经租' when info.LEASE_WAY='BACK-LEASE' then '回租' when info.LEASE_WAY='LEASE' then '直租' else '一次性买断' end ...
分类:
数据库 时间:
2020-09-17 12:37:45
阅读次数:
34