不蒜子统计官网:http://busuanzi.ibruce.info/
详细使用教程:http://ibruce.info/2015/04/04/busuanzi/
目前支持的功能:(两行代码,搞定计数;方便、简洁、实用)
a、显示站点总访问量
b、显示单页面访问量
不蒜子统计官网:http://busuanzi.ibruce.info/
详细使用教程:http://ibruce.info/2015/04/04/busuanzi/
目前支持的功能:(两行代码,搞定计数;方便、简洁、实用)
a、显示站点总访问量
b、显示单页面访问量
Given n non-negative integers a1, a2, …, an , where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (i, 0). Find two lines, which together with x-axis forms a container, such that the container contains the most water.
Debug用来追踪代码的运行流程,通常在程序运行过程中出现异常,启用Debug模式可以分析定位异常发生的位置,以及在运行过程中参数的变化。通常我们也可以启用Debug模式来跟踪代码的运行流程去学习三方框架的源码。
Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward.
Given a 32-bit signed integer, reverse digits of an integer.
索引是一种数据结构,用于帮助我们在大量数据中快速定位到我们想要查找的数据。
索引最形象的比喻就是图书的目录了。注意这里的大量,数据量大了索引才显得有意义,如果我想要在 [1,2,3,4] 中找到 4 这个数据,直接对全数据检索也很快,没有必要费力气建索引再去查找。
索引在 MySQL 数据库中分三类:
Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000.