码迷,mamicode.com
首页 >  
搜索关键字:air water    ( 5476个结果
Markdown语法
Markdown学习 标题 (注意要用英文符号) ##+空格+文字 三级标题 ###空格 字体 hello 斜体* 。。* hello 加粗 ** 。。** *hello *** 。。 * * * hello ~~ 。。 ~~ 引用 引用别人的句子,文章。 分割线 3个减号或3个星号 图片 !+[名 ...
分类:其他好文   时间:2021-02-22 12:42:02    阅读次数:0
算法图解——截留雨水( Trapping Rain Water)
1. 题目描述 Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it can trap after raining ...
分类:移动开发   时间:2021-02-18 13:31:34    阅读次数:0
Leetcode 第 228 场周赛 赛后总结
比赛地址:这里 T1: 根据题意,符合题目要求的只有两种字符串:0101010…或1010101…,因此,我们可以直接构造这两种字符串并比较与原串的差异即可。 附上代码: class Solution { public: int minOperations(string s) { int len = ...
分类:其他好文   时间:2021-02-17 14:32:43    阅读次数:0
markdown语法学习
markdown语法学习 标题 #空格 二级标题 ##空格 三级标题至六级标题#依次增加 字体 Hello World 粗体:在字体两边加** Hello World 斜体:在字体两边加* Hello World 粗体加斜体:在字体两边加*** Hello World 删除线:在字体两边加~~ 引用 ...
分类:其他好文   时间:2021-02-16 12:15:47    阅读次数:0
盛最多水的容器
此博客链接:https://www.cnblogs.com/ping2yingshi/p/14399182.html 盛最多水的容器 题目链接:https://leetcode-cn.com/problems/container-with-most-water/submissions/ 题目 给你 ...
分类:其他好文   时间:2021-02-16 12:13:20    阅读次数:0
单源最短路 : 多起点
https://www.acwing.com/problem/content/1139/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
分类:其他好文   时间:2021-02-15 11:53:52    阅读次数:0
0138. Copy List with Random Pointer (M)
Copy List with Random Pointer (M) 题目 A linked list is given such that each node contains an additional random pointer which could point to any node in ...
分类:其他好文   时间:2021-02-15 11:52:08    阅读次数:0
springboot配置多数据源
首先是一个正常能运行的springboot项目 目前我这的要求是springboot配置了3个数据源(1.本地的mysql,2远程的mysql,3远程的oracle) 第一步:在pom.xml文件中导入依赖 <!--多数据源--> <dependency> <groupId>mysql</group ...
分类:编程语言   时间:2021-02-09 11:55:55    阅读次数:0
「FCITX」- 安装 @20210203
方法一、从发行版的源中安装(推荐) 在 Kali GNU/Linux Rolling、Ubuntu 等 Debian 衍生版中,执行如下安装命令: apt-get install fcitx fcitx-bin fcitx-tools fcitx-libs-dev fcitx-table-wbpy ...
分类:其他好文   时间:2021-02-04 11:46:23    阅读次数:0
Java并发编程之CAS和AQS
什么是CAS CAS(compare and swap),字面意思比较并交换,是解决多线程并行情况下使用锁造成性能损耗的一种机制. public final boolean compareAndSet(int expect, int update) { return unsafe.compareAn ...
分类:编程语言   时间:2021-01-29 12:10:28    阅读次数:0
5476条   上一页 1 ... 6 7 8 9 10 ... 548 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!