http://www.rfc-editor.org/download.htmlabout RTSPhttp://en.wikipedia.org/wiki/Real_Time_Streaming_ProtocolRTSP was developed by RealNetworks, Netscape...
分类:
其他好文 时间:
2014-06-16 00:00:39
阅读次数:
549
使用UITableView实现图片视差效果视差效果如下:原理:根据偏移量计算不同的移动速度,so easy!//// RootTableViewController.h// TableView//// Copyright (c) 2014年 Y.X. All rights reserved./...
分类:
其他好文 时间:
2014-06-15 23:36:05
阅读次数:
348
document.all可以判断浏览器是否是IE if(document.all){ alert("is IE!"); }很多地方甚至高级程序设计第三版,都说这样可以检测ie其实chrome也有document.all,备注一下。
分类:
其他好文 时间:
2014-06-15 23:07:03
阅读次数:
240
$(function () { $("#txtPhone").focus(function () { $(this).next().show().removeClass("onError").removeClass("onright").addClass("ontan").ht...
分类:
其他好文 时间:
2014-06-15 22:44:27
阅读次数:
346
本教程使用的是MySQL5.0版本一路下一步安装,到3个选项这里选择自定义在“MySQL Server(MySQL服务器)”上左键单击,选择“This feature, and all subfeatures, will be installed on local hard drive.”,即“此部...
分类:
数据库 时间:
2014-06-15 22:33:38
阅读次数:
359
原题地址:https://oj.leetcode.com/problems/minimum-window-substring/题意:Given a string S and a string T, find the minimum window in S which will contain all...
分类:
编程语言 时间:
2014-06-15 22:10:42
阅读次数:
1109
原题地址:https://oj.leetcode.com/submissions/detail/5341904/题意:The set[1,2,3,…,n]contains a total ofn! unique permutations.By listing and labeling all of ...
分类:
编程语言 时间:
2014-06-15 21:33:16
阅读次数:
270
关于SQL,一边恐惧一边前行,战战兢兢,如履薄冰。1.那些Maggie教我的事 因为脚本老是倒不齐全,QA某次跟我要了三次脚本,于是乎求助公司DBA. 利用SQL server本身的查询,找出最近修改的存储过程。1 SELECT NAME,modify_date FROM sys.all_objec...
分类:
数据库 时间:
2014-06-15 21:05:43
阅读次数:
229
DescriptionIn modern society, each person has his own friends. Since all the people are very busy, they communicate with each other only by phone. You...
分类:
其他好文 时间:
2014-06-15 20:44:45
阅读次数:
162
题目
Given a set of distinct integers, S, return all possible subsets.
原题链接(点我)
解题思路
子集合问题。给一个集合 ,求出其所有的子集合。这个题也是个组合问题--老思路:递归加循环。
代码实现......
分类:
其他好文 时间:
2014-06-13 21:28:42
阅读次数:
252