码迷,mamicode.com
首页 >  
搜索关键字:definition    ( 2735个结果
[Leetcode] Sort List
Question:Sort a linked list inO(nlogn) time using constant space complexity.Solution:Merge sort.找到链表的中间的那个ListNode. 1 /** 2 * Definition for singly-l....
分类:其他好文   时间:2014-06-12 17:59:34    阅读次数:285
经典sql
一、基础1、说明:创建数据库CREATEDATABASEdatabase-name2、说明:***数据库dropdatabasedbname3、说明:备份sqlserver---创建备份数据的deviceUSEmasterEXECsp_addumpdevice‘disk‘,‘testBack‘,‘c:\mssql7backup\MyNwind_1.dat‘---开始备份BACKUPDATABASEpubsTOtestBack4、说..
分类:数据库   时间:2014-06-10 23:34:53    阅读次数:367
【Leedcode】Insertion Sort List
Sort a linked list using insertion sort. 1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int val; 5 * ListNode *nex...
分类:其他好文   时间:2014-06-10 12:14:19    阅读次数:253
Binary Tree Preorder Traversal
第一次看到accept,心里有点小开心/** * Definition for binary tree * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode...
分类:其他好文   时间:2014-06-10 11:53:41    阅读次数:241
【Leetcode】Sort List
Sort a linked list inO(nlogn) time using constant space complexity.单向链表排序O(nlogn),Mergesort可以实现。 1 /** 2 * Definition for singly-linked list. 3 * st.....
分类:其他好文   时间:2014-06-10 00:44:11    阅读次数:329
LeetCode --- Balanced Binary Tree
题目链接题意: 给定一棵二叉树, 判断是否为平衡二叉树, 这里的平衡二叉树指的是:每个结点的左右子树的深度之差不超过1。附上代码: 1 /** 2 * Definition for binary tree 3 * struct TreeNode { 4 * int val; 5 * ...
分类:其他好文   时间:2014-06-08 18:58:35    阅读次数:194
LeetCode --- Minimum Depth of Binary Tree
题目链接求二叉树最小深度,最小深度指的是:从根节点走到最近的叶子结点的最短长度附上代码: 1 /** 2 * Definition for binary tree 3 * struct TreeNode { 4 * int val; 5 * TreeNode *left; 6...
分类:其他好文   时间:2014-06-08 18:43:48    阅读次数:220
Binary Tree Inorder Traversal
1. 递归解法 /** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ cl...
分类:其他好文   时间:2014-06-08 16:51:59    阅读次数:199
求斐波那契单词的第n个字符
Definition Let  be "0" and  be "01". Now  (the concatenation of the previous sequence and the one before that). The infinite Fibonacci word is the limit  We have:     0     01     010     01...
分类:其他好文   时间:2014-06-08 09:19:42    阅读次数:273
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!