Given an input string (s) and a pattern (p), implement regular expression matching with support for '.' and '*'. The matching should cover the entire ...
分类:
其他好文 时间:
2018-09-23 11:56:13
阅读次数:
177
无向图的最小路径覆盖。 #include <bits/stdc++.h> using namespace std; const int M = 1e5+7; int head[M],cnt,n,m,deg[M],tot,p[M<<2],vis[M],s; vector<int> v,ans[M]; ...
分类:
其他好文 时间:
2018-09-19 17:19:56
阅读次数:
174
职业规划: 1.Resume:简历 -Content(内涵) -layout :卖相 2.Cover letter : 求职信 3.Get the promotion you want 得到你想要的晋升 Stay focused :专注 Get results :达到工作成果 Stand out 脱 ...
分类:
其他好文 时间:
2018-09-18 11:09:43
阅读次数:
249
直接上代码: 项目:head里添加meta标签: <meta name="viewport" content="width=device-width, viewport-fit=cover"> CSS:在body 添加css:@supports (bottom: constant(safe-area ...
分类:
其他好文 时间:
2018-09-14 19:47:40
阅读次数:
586
项目中因为需求,底部的tab导航栏是自己写的,在开发者工具中一切正常;但是在真机上页面滑动时,echarts的层级比tab高,调过两者的z-index后仍然如此。 经过查找后发现cover-view和cover-image替换tab的view后,可以解决以上的问题。 ...
分类:
微信 时间:
2018-09-04 11:37:36
阅读次数:
1041
In this post, we'll cover how to automate EBS snapshots for your AWS infrastructure using Lambda and CloudWatch. We'll build a solution that creates... ...
分类:
其他好文 时间:
2018-08-31 00:24:27
阅读次数:
224
题意 给个无向图,无重边和自环,问最少需要多少路径把边覆盖了。并输出相应路径 分析 首先联通块之间是独立的,对于一个联通块内,最少路径覆盖就是 max(1,度数为奇数点的个数/2)。然后就是求欧拉路径了,先将块内度数为奇数的点找出来,留下两个点,其余两两连上虚边,这样我们选择从一个奇数点出发到另一个 ...
分类:
其他好文 时间:
2018-08-29 01:02:51
阅读次数:
143
A vertex cover of a graph is a set of vertices such that each edge of the graph is incident to at least one vertex of the set. Now given a graph with ...
分类:
其他好文 时间:
2018-08-20 17:53:26
阅读次数:
219
该选择器代表的意思是输入框被选中的状态 :focus输入框获得焦点的状态即输入框被选中的状态 } 标签1+标签2:相邻兄弟选择器,选择标签1下面的和标签1相邻的标签。如果该标签是标签2此时应用样式。如果不是则不使用 cover:图片进行等比例缩放直到图片完全覆盖整个标签 contain:图片进行等比 ...
分类:
其他好文 时间:
2018-08-19 14:00:15
阅读次数:
238