码迷,mamicode.com
首页 >  
搜索关键字:right    ( 9126个结果
[LeetCode] Text Justification
Given an array of words and a length L, format the text such that each line has exactly L characters and is fully (left and right) justified.You shoul...
分类:其他好文   时间:2014-08-18 21:53:12    阅读次数:341
Java进阶之欧拉工程 第十五篇【网格路径问题】
网格路径问题,中文翻译如下: 从 22的格子的左上角开始,只允许向右和向下移动,一共有六种路径可以抵达右下角 那么在2020的路径中一共有多少条这样的路径? 原题如下: Starting in the top left corner of a 22 grid, and only being able to move to the right and down...
分类:编程语言   时间:2014-08-18 16:33:02    阅读次数:232
css 制作三角形图标 不支持IE6
.triangle {width: 10px;height: 10px;overflow: hidden;border-left: 4px solid rgba(0, 224, 255, 1);border-right: 4px solid rgb(0, 255, 10);border-top: 4...
分类:Web程序   时间:2014-08-18 16:10:32    阅读次数:195
Java与.net的区别delegate和event
There is no delegate concept in JavaThe right-side C# program may be mimiced with reflection technology.在Java中没有delegate的概念,而C#中delegate使用的是类似Java中反射的...
分类:编程语言   时间:2014-08-18 12:01:44    阅读次数:156
二叉树的创建、遍历
二叉树的创建。这里采用最简单的情况,创建完全二叉树,用数组来保存: 1 struct TreeNode 2 { 3 int val; 4 TreeNode *left, *right; 5 TreeNode(int x): val(x), left(NULL), right(...
分类:其他好文   时间:2014-08-18 01:30:03    阅读次数:332
关于基底法的专题讨论
$\bf命题:$设$f(x,y)$为线性空间$V$上的非退化双线性函数,则对任何$g \in {V^*}$,存在唯一的$\alpha \in V$,使得$g\left( \beta \right) = f\left( {\alpha ,\beta } \right),\forall \beta \i...
分类:其他好文   时间:2014-08-17 19:51:32    阅读次数:233
Binary Tree Zigzag Level Order Traversal
Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and ...
分类:其他好文   时间:2014-08-17 18:25:02    阅读次数:233
Binary Tree Level Order Traversal
Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, level by level).For example:Given binary tree {3,...
分类:其他好文   时间:2014-08-17 15:32:12    阅读次数:131
Binary Tree Level Order Traversal II
Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to root).For e...
分类:其他好文   时间:2014-08-17 15:31:52    阅读次数:221
二叉排序树算法
1: package cn.cqu.huang; 2: 3: class BiTree{ 4: //二叉树节点包含三个域 5: private int data; 6: private BiTree left; 7: private BiTree right; 8: 9: 10: public Bi...
分类:其他好文   时间:2014-08-17 11:38:52    阅读次数:215
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!