wp-includes/cache.phpwp-includes/capabilities.phpwp-includes/class-IXR.php:Incutio XML-RPC库。包括了 XML RPC支持函数。由http://scripts.incutio.com/xmlrpc/提供支持。wp...
分类:
其他 时间:
2015-08-19 08:11:13
收藏:
0 评论:
0 赞:
0 阅读:
263
URAL 1707. Hypnotoad's Secretspace=1&num=1707" target="_blank" style="">题目链接题意:这题设置的恶心不能多说。构造点和矩形。大概就是问每一个矩形里面是否包括点思路:树状数组。把点排序,按y轴,在按x轴。在按询问,这样每次遇到一个...
分类:
其他 时间:
2015-08-19 08:11:03
收藏:
0 评论:
0 赞:
0 阅读:
261
之前在angular的时候实现多级联动很方便,只需监听某个变量的变化然后执行函数就行,昨天自己写了个联动:var getOptions = function(param, domId){ $.ajax({ url:"/admin/ucm/queryResource...
分类:
Web开发 时间:
2015-08-19 08:10:53
收藏:
0 评论:
0 赞:
0 阅读:
240
随着3G的普及,越来越多的人使用手机上网。移动设备正超过桌面设备,成为访问互联网的最常见终端。于是,网页设计师不得不面对一个难题:如何才能在不同大小的设备上呈现同样的网页?手机的屏幕比较小,宽度通常在600像素以下;PC的屏幕宽度,一般都在1000像素以上(目前主流宽度是1366×768),有的还达...
分类:
Web开发 时间:
2015-08-19 08:10:43
收藏:
0 评论:
0 赞:
0 阅读:
295
本题地址:http://www.luogu.org/problem/show?pid=1890题目描述给定一行n个正整数a[1]..a[n]。m次询问,每次询问给定一个区间[L,R],输出a[L]..a[R]的最大公因数。输入输出格式输入格式:第一行两个整数n,m。第二行n个整数表示a[1]..a[...
分类:
其他 时间:
2015-08-19 08:10:33
收藏:
0 评论:
0 赞:
0 阅读:
338
wp-admin/admin.php:管理文件的核心文件。用来连接数据库,整合动态菜单数据,显示非核心控制页面等。wp-admin/admin-db.phpwp-admin/admin-footer.php:定义所有管理控制台的页脚。wp-admin/admin-functions.php:定义了管...
分类:
其他 时间:
2015-08-19 08:10:23
收藏:
0 评论:
0 赞:
0 阅读:
243
1、概述 Android提供了几种动画类型:View Animation 、Drawable Animation 、Property Animation 。View Animation相当简单,不过只能支持简单的缩放、平移、旋转、透明度基本的动画,且有一定的局限性。比如:你...
分类:
移动平台 时间:
2015-08-19 07:09:13
收藏:
0 评论:
0 赞:
0 阅读:
239
前面已经介绍过了,编译和运行java程序必须经过两个步骤。 ????????1.将源文件编译成字节码。 ????????2.解释执行平台无关的字节码程序。 ????????上面这两个步骤分别需...
分类:
其他 时间:
2015-08-19 07:09:03
收藏:
0 评论:
0 赞:
0 阅读:
194
1、Nginx 简介 Nginx 作为一款面向性能设计的HTTP服务器,相较于Apache、lighttpd具有占有内存少,稳定性高等优势。其流行度越来越高,应用也越来越广泛,常见的应用有:网页服务器、反向代理服务器以及电子邮件(...
分类:
其他 时间:
2015-08-19 07:08:53
收藏:
0 评论:
0 赞:
0 阅读:
359
96 Unique Binary Search Trees链接:https://leetcode.com/problems/unique-binary-search-trees/
问题描述:
Given n, how many structurally unique BST’s (binary search trees) that store values 1…n?For example,
G...
分类:
其他 时间:
2015-08-19 07:07:53
收藏:
0 评论:
0 赞:
0 阅读:
225
题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=4917
题意:每个单词都一些tips单词。先输入n个单词和他们的tips。然后m组查询,每次查询一些单词,按字典序输出这些单词的公有tips。
思路:对第i个单词,用vector数组g,g[i]来存这个单词的所有tips。对于所有单词建立字典树,在单...
分类:
其他 时间:
2015-08-19 07:07:43
收藏:
0 评论:
0 赞:
0 阅读:
300
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4292解法:拆人代码:#include
#include
#include
#include
#include
#include
#include <functiona...
分类:
其他 时间:
2015-08-19 07:07:13
收藏:
0 评论:
0 赞:
0 阅读:
180
101 Symmetric Tree链接:https://leetcode.com/problems/symmetric-tree/
问题描述:
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).For example, this binary tree...
分类:
其他 时间:
2015-08-19 07:06:53
收藏:
0 评论:
0 赞:
0 阅读:
152
129 Sum Root to Leaf Numbers链接:https://leetcode.com/problems/sum-root-to-leaf-numbers/
问题描述:
Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number.An...
分类:
其他 时间:
2015-08-19 07:06:33
收藏:
0 评论:
0 赞:
0 阅读:
191
100 Same Tree链接:https://leetcode.com/problems/same-tree/
问题描述:
Given two binary trees, write a function to check if they are equal or not.Two binary trees are considered equal if they are structurall...
分类:
其他 时间:
2015-08-19 07:06:13
收藏:
0 评论:
0 赞:
0 阅读:
97
最近在使用Python爬取网页内容时,总是遇到JS临时加载、动态获取网页信息的困难。例如爬取CSDN下载资源评论、搜狐图片中的“原图”等,此时尝试学习Phantomjs和CasperJS来解决这个问题。这第一篇文章当然就是安装过程及入门介绍,主要先介绍Phantomjs安装过程及常见用法,参考官方文档,包括:网页截图、页面加载、代码运算、DOM操作、网络请求及响应等,希望对你有所帮助~...
分类:
编程语言 时间:
2015-08-19 07:06:03
收藏:
0 评论:
0 赞:
0 阅读:
485
晚上由于处理磁盘报警的需要,进行了日志压缩,在此次压缩中跟别使用了gzip和xz软件对文本进行了压缩,压缩的结果非常令人诧异。
出于对xz好奇的原因是因为在下载内核源代码时经常可以看到.xz格式的文件包,而且其大小比.gz和.bz2格式的文件都小一些。首先简单介绍一下gzip和xz:
gzip:GZIP最早由Jean-loup Gailly和Mark Adler...
分类:
其他 时间:
2015-08-19 07:05:53
收藏:
0 评论:
0 赞:
0 阅读:
184
package com.dt.scala.list
object ListBuffer_Internals {
def main(args: Array[String]): Unit = {
val list = List(1,2,3,4,5,6,7,8,9)
increment(list)
increment_MoreEffective(list)
inc...
分类:
其他 时间:
2015-08-19 07:05:33
收藏:
0 评论:
0 赞:
0 阅读:
187
【139-Word Break(单词拆分)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题 Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary wo...
分类:
编程语言 时间:
2015-08-19 07:05:23
收藏:
0 评论:
0 赞:
0 阅读:
424
卡特兰数又称卡塔兰数,英文名Catalan number,是组合数学中一个常出现在各种计数问题中出现的数列。由以比利时的数学家欧仁·查理·卡塔兰 (1814–1894)命名,其前几项为 : 1, 2, 5, 14, 42, 132, 429, 1430, 4862, 16796, 58786, .....
分类:
其他 时间:
2015-08-19 07:04:13
收藏:
0 评论:
0 赞:
0 阅读:
275