码迷,mamicode.com
首页 >  
搜索关键字:symmetric    ( 408个结果
Symmetric Tree
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this binary tree is symmetric: 1 / 2 2 / \ / 3 4 4 3 But the following...
分类:其他好文   时间:2014-12-16 22:39:34    阅读次数:214
[LeetCode] Symmetric Tree
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).For example, this binary tree is symmetric: 1 / \ ...
分类:其他好文   时间:2014-12-14 00:43:17    阅读次数:170
SymmetricDS文档翻译--【Chapter 2. 配置(Setup)】
2.1. Engine Files 每一个节点都需要配置一些属性,以使该节点连接到一个数据库和注册到一个父节点。这些属性在一个名叫xxxx.properties的文件中定义,这个文件放在SymmetricDS安装副本根目录下的engines文件夹。文件名的命名通常依据engine.name属性,但这不是必须的。 为了给一个节点一个标识,下面这些属性是必须的。conf/symmetric.pro...
分类:其他好文   时间:2014-12-08 10:45:38    阅读次数:182
SymmetricDS安装记录
本安装记录基于SymmetricDS Quick Start Guide中的样例,安装在两个机器上。 安装环境 Machine1:hadoop3.highgo.com Machine2:hadoop4.highgo.com 安装SymmetricDS 1.      下载SymmetricDS服务器程序,当前是Symmetric-3.6.14,下载Symmetric-3.6.14-ser...
分类:其他好文   时间:2014-12-04 14:00:13    阅读次数:231
LeetCode: Symmetric Tree 解题报告
Symmetric TreeGiven a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).For example, this binary tree is symmetric...
分类:其他好文   时间:2014-12-03 23:00:53    阅读次数:290
【LeetCode】Symmetric Tree (2 solutions)
Symmetric TreeGiven a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).For example, this binary tree is symmetric...
分类:其他好文   时间:2014-12-01 14:11:54    阅读次数:218
leetcode Symmetric Tree
这里是给定一个数,判断是不是对称的,即根据根画一竖直线对折重合一样。For example, this binary tree is symmetric: 1 / \ 2 2 / \ / \3 4 4 3But the following is not: 1 / \ ...
分类:其他好文   时间:2014-11-27 20:27:23    阅读次数:208
LeetCode[Tree]: Symmetric Tree
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). Recursive Algorithm class Solution { public: bool isSymmetric(TreeNode *root) { return ...
分类:其他好文   时间:2014-11-27 09:18:04    阅读次数:176
漫话NUMA
在DPDK中,使用了NUMA技术,来提高CPU对内存的访问效率.那么什么是NUMA呢,它是如何提高CPU访问内存的效率的呢?首先,我们先明确几个概念,即,SMP、NUMA、MPP。它们是目前主流的计算机系统架构。SMP(Symmetric Multi-Processor):对称多处理结构。在这样的系...
分类:其他好文   时间:2014-11-20 21:35:27    阅读次数:249
Symmetric Tree 深度优先搜索
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).For example, this binary tree is symmetric: 1 / \ ...
分类:其他好文   时间:2014-11-19 20:16:39    阅读次数:190
408条   上一页 1 ... 31 32 33 34 35 ... 41 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!