一、首先打开office的安装路径:C:\Program Files\Common Files\microsoft shared\OFFICE一二\Office Setup Controller 注意:如果office安装在其它盘,请到相应路径下依次找到“Office Setup Controlle ...
分类:
其他好文 时间:
2020-05-03 10:52:31
阅读次数:
82
一、下载Hadoop包和JDK1、下载Hadoop地址:https://archive.apache.org/dist/hadoop/common/hadoop-2.6.4/hadoop-2.6.4.tar.gz2、下载jdk:链接:https://pan.baidu.com/s/1lbu7eBEtgjeGIi2bWthLnA提取码:0j0j二、准备虚拟机1、在VMware中创建新的虚拟机(Cen
分类:
其他好文 时间:
2020-05-03 01:08:47
阅读次数:
68
Preface: It's believed that common memories get people more colsed, let alone the efforts we paid in study will enable us in becoming better self. Thi ...
分类:
编程语言 时间:
2020-05-02 20:36:53
阅读次数:
76
题目: 解答: (递归) O(n) 当我们用递归去做这个题时不要被题目误导,应该要明确一点:这个函数的功能有三个:给定两个节点 p和 q (1)如果 p 和 q 都存在,则返回它们的公共祖先; (2)如果只存在一个,则返回存在的一个; (3)如果 p 和 q 都不存在,则返回NULL 本题说给定的两 ...
分类:
其他好文 时间:
2020-05-02 17:02:27
阅读次数:
47
1. Why do I care? Building a summary or pivot table table is very common in daily data analysis. We can use pandas.pivot_table or pandas.dataframe.gro ...
分类:
编程语言 时间:
2020-05-02 16:40:39
阅读次数:
64
The lowest common ancestor (LCA) of two nodes U and V in a tree is the deepest node that has both U and V as descendants. A binary search tree (BST) i ...
分类:
其他好文 时间:
2020-05-02 14:54:12
阅读次数:
50
记录下书中的例子 1.1文本和词汇 首先得下载 import nltk nltk.download() 下载器的Collections选项卡下,选择book然后下载 如果下载缓慢或者报错,建议找百度云的包效果是一样的 进入IDLE,输入from nltk.book import *,出现以下结果代表 ...
分类:
编程语言 时间:
2020-05-02 12:15:43
阅读次数:
92
安装docker 卸载旧版docker yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate \ docker-logrot ...
分类:
其他好文 时间:
2020-05-02 12:04:15
阅读次数:
62
在说 evict 之前,我们先看下 池对象的状态定义: public enum PooledObjectState { IDLE, ALLOCATED, EVICTION, EVICTION_RETURN_TO_HEAD, VALIDATION, VALIDATION_PREALLOCATED, V ...
分类:
Web程序 时间:
2020-05-02 09:48:57
阅读次数:
66
In this tutorial, we will extend last Maven + Spring hello world example by adding JDBC support, to use Spring + JDBC to insert a record into a custom ...
分类:
数据库 时间:
2020-05-02 09:43:18
阅读次数:
61