RLE编码,还不会,先搬运一下大佬的代码,理解之后再用Java自己实现 1 #include <map> 2 #include <vector> 3 #include <cstdlib> 4 #include <iostream> 5 using namespace std; 6 static in ...
                            
                            
                                分类:
编程语言   时间:
2020-01-28 15:48:37   
                                阅读次数:
80
                             
                    
                        
                            
                            
                                    平时电脑上,一般会安装两个浏览器,以备不时之需,之前选择的是Chrome和Yandex,不过这个Yandex感觉打开越来越慢 今天看到微软发布了基于chromium内核的Edge浏览器,所以来尝尝鲜,小伙伴们可以去 "这里" 下载,试一试 不过我看,不支持Ubuntu系统,如下图: 刚才体验了一下, ...
                            
                            
                                分类:
其他好文   时间:
2020-01-26 22:25:45   
                                阅读次数:
75
                             
                    
                        
                            
                            
                                    图 基本概念 图是由顶点集合(vertex)及顶点间的关系集合(边edge)组成的一种数据结构。 这里的图并非指代数中的图。图可以对事物以及事物之间的关系建模,图可以用来表示自然发生的连接数据,如:社交网络、互联网web页面 常用的应用有:在地图应用中找到最短路径、基于与他人的相似度图,推荐产品、服 ...
                            
                            
                                分类:
其他好文   时间:
2020-01-26 19:15:45   
                                阅读次数:
89
                             
                    
                        
                            
                            
                                    直接干 1 #include<iostream> 2 #include<algorithm> 3 #include<climits> 4 using namespace std; 5 struct edge 6 { 7 int from,to,weight; 8 }a[100010];//存边 9  ...
                            
                            
                                分类:
其他好文   时间:
2020-01-26 12:58:41   
                                阅读次数:
56
                             
                    
                        
                            
                            
                                PC如何禁用网页在360浏览器里面禁止切换兼容模式 方法一 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 方法二 <meta name="renderer" content="webkit" /> 注意一下:斜杠前面加个空格 PC如何禁用 ...
                            
                            
                                分类:
Web程序   时间:
2020-01-21 19:47:32   
                                阅读次数:
123
                             
                    
                        
                            
                            
                                    A. Lorenzo Von Matterhorn B.Minimum spanning tree for each edge C.Misha, Grisha and Underground D.Fools and Roads E.City Driving 题意:给你一颗基环树(有n条边,n个点的连 ...
                            
                            
                                分类:
其他好文   时间:
2020-01-18 15:00:58   
                                阅读次数:
97
                             
                    
                        
                            
                            
                                1.声明浏览器对象 from selenium import webdriver browser = webdriver.Chrome() # browser = webdriver.Firefox() # browser = webdriver.Edge() 2.访问页面 from seleniu ...
                            
                            
                                分类:
编程语言   时间:
2020-01-18 11:02:13   
                                阅读次数:
83
                             
                    
                        
                            
                            
                                    nx.compose Return a new graph of G composed with H. Composition is the simple union of the node sets and edge sets. ref "link" ...
                            
                            
                                分类:
其他好文   时间:
2020-01-18 10:47:15   
                                阅读次数:
89
                             
                    
                        
                            
                            
                                jquery 动态添加输入框的两种方法。 1.展示页面 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta ...
                            
                            
                                分类:
Web程序   时间:
2020-01-18 10:23:06   
                                阅读次数:
105
                             
                    
                        
                            
                            
                                Web端应用测试主要障碍之一就是在不同的浏览器上“测试他们的网站/应用程序”,也称为“跨浏览器测试”或者“兼容性测试”。 浏览器和浏览器版本很多(Google Chrome,Mozilla Firefox,Internet Explorer,Microsoft Edge,Opera,Yandex等) ...
                            
                            
                                分类:
其他好文   时间:
2020-01-16 11:03:38   
                                阅读次数:
80