ProblemGiven aNXN matrix, starting from the upper right corner of the matrix start printingvalues in a counter-clockwise fashion. E.g.: Consider N = 4...
                            
                            
                                分类:
其他好文   时间:
2014-11-21 10:20:38   
                                阅读次数:
179
                             
                    
                        
                            
                            
                                A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).
The robot can only move either down or right at any point in time. The robot is trying to reach the ...
                            
                            
                                分类:
其他好文   时间:
2014-11-20 15:27:40   
                                阅读次数:
167
                             
                    
                        
                            
                            
                                Dynamic ProgrammingA robot is located at the top-left corner of amxngrid (marked 'Start' in the diagram below).The robot can only move either down or ...
                            
                            
                                分类:
其他好文   时间:
2014-11-20 14:57:16   
                                阅读次数:
196
                             
                    
                        
                            
                            
                                ORA-38760: This database instance failed to turn on flashback database  第三篇
第一篇
第二篇
问题现象:
     在数据库alert告警日志中看见如下信息:
Completed: ALTER DATABASE   MOUNT
Wed Nov 19 04:57:28 2014
alter database op...
                            
                            
                                分类:
数据库   时间:
2014-11-19 14:15:58   
                                阅读次数:
254
                             
                    
                        
                            
                            
                                本文原创自 http://blog.csdn.net/voipmaker  转载注明出处。
WebRTC p2p 部分采用ICE框架,ICE框架包括stun,turn,实际使用webrtc开发音视频应用时遇到的一个问题是呼叫建立很慢,原因是ice过程耗费过多时间,客户端在发起呼叫时先与stun服务器通信获取 server reflexive 地址和relay 地址,加上local host地...
                            
                            
                                分类:
Web程序   时间:
2014-11-19 11:21:24   
                                阅读次数:
509
                             
                    
                        
                            
                            
                                本文原创自 http://blog.csdn.net/voipmaker  转载注明出处。
WebRTC p2p 部分采用ICE框架,ICE框架包括stun,turn,实际使用webrtc开发音视频应用时遇到的一个问题是呼叫建立很慢,原因是ice过程耗费过多时间,客户端在发起呼叫时先与stun服务器通信获取 server reflexive 地址和relay 地址,加上local host地...
                            
                            
                                分类:
Web程序   时间:
2014-11-19 01:20:21   
                                阅读次数:
277
                             
                    
                        
                            
                            
                                啥子都不说,直接上代码:#include#includeint MAX(int a,int b){ if(a>b) return a; return b;}void turn(char *p,char *q){ char t=*p; *p=*q; *q=t...
                            
                            
                                分类:
其他好文   时间:
2014-11-18 13:24:57   
                                阅读次数:
171
                             
                    
                        
                            
                            
                                A robot is located at the top-left corner of amxngrid (marked 'Start' in the diagram below).The robot can only move either down or right at any point ...
                            
                            
                                分类:
其他好文   时间:
2014-11-17 12:13:51   
                                阅读次数:
184
                             
                    
                        
                            
                            
                                A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).The robot can only move either down or right at any po...
                            
                            
                                分类:
其他好文   时间:
2014-11-17 06:51:30   
                                阅读次数:
164
                             
                    
                        
                            
                            
                                There's usually a common strategy for "find *" problems - binary search: half the space can be dropped by some rules.And take care of corner cases.cla...
                            
                            
                                分类:
其他好文   时间:
2014-11-15 16:53:56   
                                阅读次数:
171