-- 数据库大小CREATE TABLE #tmptb(NAME VARCHAR(100),db_size VARCHAR(100),OWNER VARCHAR(500),dbid INT,created DATE,STATUS VARCHAR (500),COMPATIBILITY_LEVEL I...
分类:
数据库 时间:
2014-08-07 22:00:27
阅读次数:
287
http://howtodoinjava.com/2013/06/04/solved-java-compiler-level-does-not-match-the-version-of-the-installed-java-project-facet/ mvn eclipse:eclipse -Dwtpversion=2.0...
分类:
Web程序 时间:
2014-08-07 19:24:20
阅读次数:
186
High Level OverviewAt a coarse level, AS 7 consists of two main elements:A core manageable service container based on modular classloadingExtensions t...
分类:
其他好文 时间:
2014-08-07 18:25:10
阅读次数:
262
??
Problem Description
Astronomers often examine star maps where stars are represented by points on a plane and each star has Cartesian coordinates. Let the level of a star be an amount of the stars...
分类:
其他好文 时间:
2014-08-07 13:17:10
阅读次数:
247
1st round: 一个白人,先是聊了下project,然后一道coding题,找到距离一个节点k的所有节点。这个直接node bfs就可以解决。这一轮很基础。node bfs 加 count 计算level就行. facebook电面原题2nd round: 一个印度小伙,上来就是题,没有beh...
分类:
其他好文 时间:
2014-08-07 05:11:38
阅读次数:
302
觉着没事,应该学点东西。找到以前看过的python,试着做了个读取文件的程序。不管效果怎么,总算成功了。#!/usr/bin/python # -*- coding:utf8 -*- import os allFileNum = 0 def printPath(level, path):...
分类:
编程语言 时间:
2014-08-07 03:00:58
阅读次数:
179
当为SP开发应用程序时,记住你有一些不同的方式生成并部署一个SP应用程序或解决方案。下面是一个短列表,列出选项的类型--既有历史的也有现在的:
Farm-level 解决方案
沙盒解决方案
SP-hosted app
Cloud-hosted app...
分类:
其他好文 时间:
2014-08-06 23:00:52
阅读次数:
208
问题:输出二叉树的每一行的结点,从叶子到根/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(i...
分类:
其他好文 时间:
2014-08-06 22:04:02
阅读次数:
185
问题:从上到下打印二叉树的每一行分析:先搜出二叉树的高度,然后遍历高度,每次搜索一个高度class Solution {public: int dfs(TreeNode *root) { if(root==NULL) return 0; if(root->le...
分类:
其他好文 时间:
2014-08-06 21:53:32
阅读次数:
278
Problem DescriptionToday the company has m tasks to complete. The ith task need xi minutes to complete. Meanwhile, this task has a difficulty level yi...
分类:
其他好文 时间:
2014-08-06 18:03:01
阅读次数:
329