- 博客(6)
- 收藏
- 关注
原创 ubuntu 16 DynSLAM环境配置 编译
1.Clone the repository if you haven't already: git clone --recursive https://github.com/AndreiBarsan/DynSLAM **Some files(submodule) under the src dir need to be downloaded by yourself.** **eig...
2019-10-15 15:02:32
626
原创 y7000安装ubuntu和一些小tips
新买了一只y7000, 立马就安装上了ubuntu。但是出现了很多bugs 加上网上没有太多教程。所以写一个blog记录 首先。设置u盘启动项 是开机按F12 选择USB DISK 那一项一开始我这边弹出了grub Minimal BASH-like line editing....原因可能因为u盘的问题 以前一直用来装ubuntu那个u盘突然不能用了 换了一个新的u盘重新按照步骤...
2018-09-14 22:30:20
14334
12
原创 String to Integer (atoi)
获取string中单一的值String a="中国";char b=a.charAt(0); public static int myAtoi(String str) { long result = 0; int m = 0;//index of str if(str.length() re
2016-10-31 04:25:01
148
原创 Reverse Integer
public static int reverse(int x) { long sum = 0;//一定要用long 不然会溢出 while(x != 0) { int temp = x % 10; sum = sum * 10 + temp;
2016-10-31 04:23:35
168
原创 Palindrome Number
public class Solution { public static boolean isPalindrome(int x) { ArrayList temp = new ArrayList (); while(x != 0){//处理revere int number = x%10; if
2016-10-31 04:22:34
158
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人