Java内置了API: Integer.toBinaryString(); 先看源码是怎么写的 java public static int numberOfLeadingZeros(int i) { // HD, Figure 5 6 if (i == 0) return 32; int n =  ...
                            
                            
                                分类:
其他好文   时间:
2020-03-16 19:09:21   
                                阅读次数:
92
                             
                    
                        
                            
                            
                                    Linux netcat 命令实例: 1,端口扫描 端口扫描经常被系统管理员和黑客用来发现在一些机器上开放的端口,帮助他们识别系统中的漏洞。 [root@iZbp143t3oxhfc3ar7jey0Z ~]# netcat -z -v -n 47.111.232.59 200-10000 47.11 ...
                            
                            
                                分类:
Web程序   时间:
2020-03-16 19:08:11   
                                阅读次数:
87
                             
                    
                        
                            
                            
                                Given a non-negative integer represented as non-empty a singly linked list of digits, plus one to the integer. You may assume the integer do not conta ...
                            
                            
                                分类:
其他好文   时间:
2020-03-15 13:27:25   
                                阅读次数:
48
                             
                    
                        
                            
                            
                                    E - Leading and Trailing 题目链接:https://vjudge.net/problem/LightOJ-1282#author=yyb 题目大意: 给定两个数n,k 求n^k的前三位和最后三位。 解题思路: $b = a^{n}$ 可以推出 $10^{n\log_{10}a ...
                            
                            
                                分类:
其他好文   时间:
2020-03-02 18:59:47   
                                阅读次数:
72
                             
                    
                        
                            
                            
                                    LeetCode 0278. First Bad Version第一个错误的版本【Easy】【Python】【二分】 Problem "LeetCode" You are a product manager and currently leading a team to develop a new  ...
                            
                            
                                分类:
编程语言   时间:
2020-02-22 21:55:43   
                                阅读次数:
84
                             
                    
                        
                            
                            
                                一、Flutter AppBar 自定义顶部按钮图标、颜色 leading 在标题前面显示的一个控件,在首页通常显示应用的 logo;在其他界面通常显示为返回按钮 title 标题,通常显示为当前界面的标题文字,可以放组件 actions 通常使用 IconButton 来表示,可以放按钮组 bot ...
                            
                            
                                分类:
移动开发   时间:
2020-02-21 14:39:04   
                                阅读次数:
190
                             
                    
                        
                            
                            
                                    张宁 A RUGD Dataset for Autonomous Navigation and Visual Perception in Unstructured Outdoor Environments Maggie Wigness, Sungmin Eum, John G. Rogers III ...
                            
                            
                                分类:
其他好文   时间:
2020-02-16 21:00:52   
                                阅读次数:
200
                             
                    
                        
                            
                            
                                    功能: 根据不同数据类型进行排序 格式: sort [OPTION]... [FILE]... sort [OPTION]... --files0-from=F 参数: -b, --ignore-leading-blanks 忽略每行开始前的空格 ignore leading blanks -d,  ...
                            
                            
                                分类:
编程语言   时间:
2020-01-26 13:13:27   
                                阅读次数:
116
                             
                    
                        
                            
                            
                                    代码: body: Center( child: ExpansionTile( leading: Icon(Icons.ac_unit),//左边图标 title: Text('点击打开'),//图标后面的文字 backgroundColor: Colors.orange,//打开的背景色 chil ...
                            
                            
                                分类:
其他好文   时间:
2020-01-13 20:14:40   
                                阅读次数:
153
                             
                    
                        
                            
                            
                                    You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contai ...
                            
                            
                                分类:
其他好文   时间:
2019-12-30 09:58:18   
                                阅读次数:
102