第一章 编写第一个Windows应用程序1.1 从最经典的“hello 
world”C语言程序说起本文视频教程地址:优酷网(超清):http://v.youku.com/v_show/id_XNjkwMjgwNzE2.html 
土豆网(超清、原画):http://www.tudou.com/prog...
                            
                            
                                分类:
编程语言   时间:
2014-05-05 11:24:11   
                                阅读次数:
1629
                             
                    
                        
                            
                            
                                原文:SQLSERVER中的ALL、PERCENT、CUBE关键字、ROLLUP关键字和GROUPING函数SQLSERVER中的ALL、PERCENT、CUBE关键字、ROLLUP关键字和GROUPING函数先来创建一个测试表 
1 USE [tempdb] 2 GO 3 4 CREATE TABL...
                            
                            
                                分类:
数据库   时间:
2014-05-05 11:17:30   
                                阅读次数:
575
                             
                    
                        
                            
                            
                                题目:Given an array of strings, return all groups of 
strings that are anagrams.Note: All inputs will be in lower-case.class Solution 
{public: vector ...
                            
                            
                                分类:
其他好文   时间:
2014-05-04 20:48:08   
                                阅读次数:
608
                             
                    
                        
                            
                            
                                widget *s =new 
widget;s->move((QApplication::desktop()->width()-s->width())/2,(QApplication::desktop()->height()-s->height())/2);s->show();
                            
                            
                                分类:
其他好文   时间:
2014-05-04 20:39:22   
                                阅读次数:
290
                             
                    
                        
                            
                            
                                1.字母数字自动换行:wcline.wcline {word-break: 
break-all;word-wrap: break-word;}2.内容长度自动截取并添加... overflow: 
hidden;text-overflow: ellipsis;white-space: nowrap;
                            
                            
                                分类:
其他好文   时间:
2014-05-04 19:14:15   
                                阅读次数:
302
                             
                    
                        
                            
                            
                                there be意思:表示存在或者发生。英文释义:used to show that sth 
exists or happens如果现在进行时,单数时用is,复数时用are。现在我问你一个问题.How many students in the class 
room?你怎么回答呢?使用there be...
                            
                            
                                分类:
其他好文   时间:
2014-05-04 12:30:46   
                                阅读次数:
304
                             
                    
                        
                            
                            
                                Given a collection of numbers that might 
contain duplicates, return all possible unique permutations.For 
example,[1,1,2]have the following unique perm...
                            
                            
                                分类:
其他好文   时间:
2014-05-04 10:20:44   
                                阅读次数:
240
                             
                    
                        
                            
                            
                                screen 默认使用 bash shell,一般情况下screen只用于android 
build,tmux则是我的日常使用多终端管理工具。# Default Shellshell "/bin/bash"# show status 
barhardstatus alwayslastline "%{b...
                            
                            
                                分类:
系统相关   时间:
2014-05-03 22:14:57   
                                阅读次数:
454
                             
                    
                        
                            
                            
                                You are given a string, S, and a list of words, L, that are all of the same length. Find all starting indices of substring(s) in S that is a concatenation of each word in L exactly once and without an...
                            
                            
                                分类:
其他好文   时间:
2014-05-03 21:35:49   
                                阅读次数:
310
                             
                    
                        
                            
                            
                                1、能用DISTINCT的就不用GROUP BY 
  SELECT OrderID FROM Details WHERE UnitPrice > 10 GROUP BY OrderID 
  可改为:  SELECT DISTINCT OrderID FROM Details WHERE UnitPrice > 10 
2.能用UNION ALL就不要用UNION  
  UNION A...
                            
                            
                                分类:
数据库   时间:
2014-05-03 21:31:24   
                                阅读次数:
342