CSS教程 "菜鸟教程" 通过使用CSS我们可以大大提升网页开发的工作效率 什么是CSS? CSS指层叠样式表(Cascading Style Sheets) 样式定义如何显示HTML元素 样式通常存储在样式表中 把样式添加到HTML中,是为了解决内容与表现分离的问题 外部样式表可以极大提高工作效率 ...
分类:
Web程序 时间:
2018-08-02 02:01:10
阅读次数:
186
Algorithm 1. "739. Daily Temperatures LeetCode" 1. "535. Encode and Decode TinyURL LeetCode" 1. "811. Subdomain Visit Count LeetCode" 1. "706. Design ...
分类:
其他好文 时间:
2018-07-30 00:32:02
阅读次数:
165
列表从后往前读#1.在request中获取IP#2.访问记录VISIT_RECORD = {} 放缓存 数据库 都可以 建议缓存import timeclass VisitThrottle(object): """10s内只能访问3次""" def __init__(self): self.hist ...
分类:
其他好文 时间:
2018-07-29 16:27:43
阅读次数:
167
Question "811.?Subdomain Visit Count" Solution 题目大意:统计访问子域名的次数 思路:遍历每个域名及其子域名,将其访问次数保存到map里 Java实现: ...
分类:
其他好文 时间:
2018-07-27 23:17:50
阅读次数:
306
TPS(Transactions Per Second):每秒事务数 QPS(Query Per Second):每秒请求数,QPS其实是衡量吞吐量的一个常用指标,就是说服务器在一秒的时间内处理了多少个请求。 并发数:并发数是指系统同时能处理的请求数量,这个也是反应了系统的负载能力。 峰值QPS: ...
分类:
其他好文 时间:
2018-07-26 19:53:27
阅读次数:
151
class Solution { public: //两个字符串是否可以相互转换 bool connect(const string &word1, const string &word2) { int cnt = 0; for(int i=0; i &wordList, map> & graph)... ...
分类:
其他好文 时间:
2018-07-23 20:23:19
阅读次数:
563
class Solution { public: struct GraphNode { int lable; vector neighbors; GraphNode(int x):lable(x){} }; bool DFS_graph(GraphNode* node, vector& visit)... ...
分类:
其他好文 时间:
2018-07-22 16:53:07
阅读次数:
276
题目:https://www.nowcoder.com/acm/contest/140/D 题目描述: White Cloud has built n stores numbered from 1 to n.White Rabbit wants to visit these stores in th ...
分类:
其他好文 时间:
2018-07-22 12:58:10
阅读次数:
146
在技术面试中,经常被问到“说说Cookie和Session的区别”,大家都知道,Session是存储在服务器端的,Cookie是存储在客户端的,然而如果让你更详细地说明,你能说出几点?今天个推君就和大家谈谈“Cookie和Session”的那些事儿。 Cookie是什么? 从它的词语本身含义来看: ...
分类:
其他好文 时间:
2018-07-19 21:02:04
阅读次数:
109
练习: 一:e1_MyFirstBDD 使用方法的方式实现阶乘的计算 zero.feature: Feature: Compute factorial In order to play with Lettuce As beginners We'll implement factorial Scena... ...
分类:
其他好文 时间:
2018-07-18 21:48:06
阅读次数:
691