[rtsp @ 0x906cc00] UDP timeout, retrying with TCP [rtsp @ 0x906cc00] Nonmatching transport in server reply [rtsp @ 0x906cc00] Could not find codec par ...
分类:
移动开发 时间:
2016-08-11 10:02:13
阅读次数:
249
Given a binary tree, find the maximum path sum. The path may start and end at any node in the tree. Example Given the below binary tree: 1 / \ 2 3 ret ...
分类:
其他好文 时间:
2016-08-11 06:20:25
阅读次数:
133
模块化: 1.引用模块 require (1)引用安装到node环境中的模块 (2)引用自己编写的模块 a.引用本地模块 require('module_a.js') 直接这么写会报错 Error:Cannot find module 'module_a' 原因:找不到在node里面直接调requi ...
分类:
Web程序 时间:
2016-08-11 00:56:26
阅读次数:
144
Given a sorted array of n integers, find the starting and ending position of a given target value. If the target is not found in the array, return [-1 ...
分类:
其他好文 时间:
2016-08-11 00:49:59
阅读次数:
164
Find 的使用文件查找find .(当前目录) -name find . -name "*.txt" -printfind . -name '[A-Z,a-z,1-100]*'.txt -printfind . -name "1.txt" -prune -o -name "*.txt" -prin ...
分类:
系统相关 时间:
2016-08-11 00:47:27
阅读次数:
219
# 题目 3. Longest Substring Without Repeating Characters Given a string, find the length of the longest substring without repeating characters. Examples ...
Write a function to find the longest common prefix string amongst an array of strings. 大意就是,写一个函数可以找到一个数组字符串中的最长前缀。 分析: 最长前缀的最大值为数组字符串中长度最短的字符,由最短字符串由 ...
分类:
其他好文 时间:
2016-08-10 20:49:33
阅读次数:
142
There is an integer array which has the following features: The numbers in adjacent positions are different. A[0] < A[1] && A[A.length - 2] > A[A.leng ...
分类:
其他好文 时间:
2016-08-10 20:41:32
阅读次数:
195
eclipse里有一个强大的插件,可以直接在本地编辑远程服务器代码,Eclipse Remote System Explorer (RSE) 下载安装方法: 一、下载,高版本的eclipse可以直接下载, 1、打开help——Eclipse Market Place,在find里输入remote搜索 ...
分类:
系统相关 时间:
2016-08-10 20:40:31
阅读次数:
236
题目 There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity ...
分类:
其他好文 时间:
2016-08-10 16:13:53
阅读次数:
140