题目: The Head Elder of the tropical island of Lagrishan has a problem. A burst of foreign aid money was spent on extra roads between villages some year ...
分类:
其他好文 时间:
2018-07-02 23:03:49
阅读次数:
172
前言: Python的函数具有非常灵活的参数形态,既可以实现简单的调用,又可以传入非常复杂的参数。 可变参数和关键字参数的语法: args是可变参数,args接收的是一个tuple; kw是关键字参数,kw接收的是一个dict。 使用\ args和\ kw是Python的习惯写法,当然也可以用其他参 ...
分类:
编程语言 时间:
2018-07-01 23:04:21
阅读次数:
178
主要: 一,站点搭建 1) 在apache安装目录下: 【conf\extra\httpd-vhosts.conf】加入站点配置 2) host文件添加域名解析。 host文件位置:【C:\Windows\System32\drivers\etc\hosts】 3) 重启apache。 完成站点配置 ...
分类:
Web程序 时间:
2018-06-29 23:33:57
阅读次数:
321
Given an array of integers, 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once. Find all the elements that appear twi ...
分类:
编程语言 时间:
2018-06-29 14:10:57
阅读次数:
317
一、前言 vue-cli是构建vue单页应用的脚手架,输入一串指定的命令行从而自动生成vue.js+wepack的项目模板。这其中webpack发挥了很大的作用,它使得我们的代码模块化,引入一些插件帮我们完善功能可以将文件打包压缩,图片转base64等。后期对项目的配置使得我们对于脚手架自动生成的代 ...
分类:
Web程序 时间:
2018-06-29 11:13:25
阅读次数:
254
小刘最近在做搜索相关的事,但一直很苦恼。他之前在用数据库,如MySQL,来做搜索的业务,如知识库管理、问答和文档搜索等。在这过程中,他发现数据库并不能很好的满足他的需求。我们来一起看看他遇到的问题吧~~~想了解详情请戳这里
分类:
数据库 时间:
2018-06-27 15:43:43
阅读次数:
178
Given a linked list, determine if it has a cycle in it. Follow up:Can you solve it without using extra space? 题意: 给定一个链表,判断是否有环 思路: 快慢指针 若有环,则快慢指针一定会在 ...
分类:
其他好文 时间:
2018-06-26 11:07:35
阅读次数:
185
问题描述: Given an 2D board, count how many battleships are in it. The battleships are represented with 'X's, empty slots are represented with '.'s. You m ...
分类:
其他好文 时间:
2018-06-26 10:56:58
阅读次数:
107
zabbix监控的图形界面能够更直观的查看监控状态,当我们把zabbix的语言切换为中文的时候,会发现监控图形中一些中文参数会乱码,例如下面的效果 但是图形界面在原生的英文环境下完全没有乱码问题。为了解决这种问题,又想继续使用中文环境的解决办法就是换中文字体,zabbix中也有很多的字体文件,我们可... ...
分类:
其他好文 时间:
2018-06-25 13:08:15
阅读次数:
241
Suppose that all the keys in a binary tree are distinct positive integers. Given the postorder and inorder traversal sequences, you are supposed to ou ...
分类:
其他好文 时间:
2018-06-22 17:47:42
阅读次数:
164