# Leetcode 151 翻转字符串里的单词### 题目描述给定一个字符串,逐个翻转字符串中的每个单词。 **示例1:** 输入: "the sky is blue" 输出: "blue is sky the" **示例2:** 输入: " hello world! " 输出: "world! ...
分类:
编程语言 时间:
2019-06-20 13:05:29
阅读次数:
117
linux下将文件上传到svn服务器 摘自:https://blog.csdn.net/sky_yangge/article/details/41544773 2014年11月27日 16:47:57 sky样 阅读数 7526 linux下将文件上传到svn服务器 摘自:https://blog. ...
分类:
Web程序 时间:
2019-06-16 09:16:40
阅读次数:
215
"计算字符串距离" 同样也是字符串距离计算问题,参考 "一本通 1276:【例9.20】编辑距离" Code: c++ include include include using namespace std; //Mystery_Sky // define INF 0x3f3f3f3f define ...
分类:
其他好文 时间:
2019-06-14 23:31:58
阅读次数:
120
"乘积最大(数据弱化版)" ps:本题无需使用大整数。 Code: c++ include include include using namespace std; //Mystery_Sky // define INF 0x3f3f3f3f define M 500 int f_max[M][M] ...
分类:
其他好文 时间:
2019-06-14 21:50:21
阅读次数:
154
"编辑距离" Code: c++ include include include using namespace std; //Mystery_Sky // define INF 0x3f3f3f3f define M 3000 int f[M][M]; int len_a, len_b; char ...
分类:
其他好文 时间:
2019-06-14 21:47:33
阅读次数:
145
"城市交通路网" 最短路 + 路径输出 Code: c++ include include include include using namespace std; //Mystery_Sky // define M 1000100 define INF 0x3f3f3f3f struct Edge ...
分类:
其他好文 时间:
2019-06-09 22:31:31
阅读次数:
202
"机器分配" Code: c++ include include include using namespace std; //Mystery_Sky // define M 5000 int f[M][M]; int n, m, ans; int c[M][M]; void print(int i ...
分类:
其他好文 时间:
2019-06-09 20:49:18
阅读次数:
151
https://www.cnblogs.com/sky-heaven/p/8930048.html https://www.cnblogs.com/zengyongjoy/archive/2012/08/23/2653065.html ...
看到太多的网页设计师发布企业站的个人作品,设计中总是摆脱不了大框套小框的设计布局思路,不加思索的跳入单一的网页布局形式中,于是就有了把企业站常用的页面布局方式总结一下的想法,让大家包括我自己全面的了解一下企业站的常见布局方式,做到对此种类型的网站布局心中有数,跳出狭隘、单一的设计思路,于是就有了这篇 ...
分类:
Web程序 时间:
2019-06-07 23:04:57
阅读次数:
288
目录 一、概述 Zabbix支持许多在多种情况下使用的宏。宏是一个变量,由如下特殊语法标识:MACRO 有效地使用宏可以节省时间,并使Zabbix变地更加高效。 在一个的典型用途中,宏可以用于模板中。因此,模板的触发器可能命名为“{HOST.NAME}的mysql{#MYSQLPORT} 端口已宕掉 ...
分类:
其他好文 时间:
2019-05-28 18:34:24
阅读次数:
227