- 博客(8)
- 资源 (3)
- 收藏
- 关注
原创 TeraData知识痛点-权限问题
TeraData知识痛点-权限问题 1.TeraData中的权限赋予grant命令将数据库对象的一个或多个权限分配给用户或数据库。 具体命令:GRANT privileges ON objectname TO username; 详细说明: 1. Teradata中数据库对象:数据库中的对象包括表、视图、宏、触发器和存储过程。 2. privileges(权限)可以是INSERT,SELE
2017-12-21 10:53:09 3320 1
原创 H-Index
leetcode 274题目描述Given an array of citations (each citation is a non-negative integer) of a researcher, write a function to compute the researcher’s h-index.According to the definition of h-index on Wik
2016-07-07 14:57:51 342
原创 236. Lowest Common Ancestor of a Binary Tree
leetcode题目描述Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree.According to the definition of LCA on Wikipedia: “The lowest common ancestor is defined between two
2016-06-17 09:19:52 348
原创 235. Lowest Common Ancestor of a Binary Search Tree
leetcode题目描述Given a binary search tree (BST), find the lowest common ancestor (LCA) of two given nodes in the BST.According to the definition of LCA on Wikipedia: “The lowest common ancestor is defined
2016-06-16 10:44:47 243
原创 257.BinaryTreePaths
257.BinaryTreePathsLeetCode题目描述Given a binary tree, return all root-to-leaf paths.For example, given the following binary tree:1 / \ 2 3 \ 5 All root-to-leaf paths are:[“1->2->5”, “1->3”
2016-06-14 16:08:44 292
原创 二叉树的下一个节点
二叉树的下一个节点剑指offer58题解题思路这个题需要考虑的点是 该节点存在右子树,那么下一个节点就是右子树的最左节点 该节点不存在右子树的话 该节点是父节点的左节点,那么下一个节点是父节点 该节点是父节点的右节点,向上查找到一个节点是其父节点的左节点,那么这个节点的父节点就是下一个节点 代码class Solution { public: TreeLinkNode* GetNext(Tr
2016-06-14 10:28:41 236
原创 BerkeleyX CS100.1x"Introduction to Big Data with Apache Spark"环境搭建
最近想学习一些跟spark相关的教程。然后看到伯克利开了一门课,BerkeleyX CS100.1x "Introduction to Big Data with Apache Spark"。首先需要进行的是环境搭建。环境搭建中我遇到了好多问题。也不知道是国内的网络的问题还是我太菜。反正跌跌撞撞中我还是完成了环境的搭配。供想要做相关学习的朋友参考一下。有不对的地方请大家指出。本人小菜鸟一枚。 本
2015-12-04 15:55:28 1090
原创 Ubuntu12.04 安装jdk1.6.0_35
在http://www.oracle.com/technetwork/java/javase/downloads/java-archive-downloads-javase6-419409.html#jdk-6u35-oth-JPR下载jdk-6u37-linux-x64.bin(博主本身系统是64位。大家可以根据自身的系统是32位还是64位下载,32位下载jdk-6u35-linux-i586.
2014-09-11 16:36:40 1041
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人