自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 资源 (4)
  • 收藏
  • 关注

原创 83. Remove Duplicates from Sorted List

Given a sorted linked list, delete all duplicates such that each element appear only once. For example, Given 1->1->2, return 1->2. Given 1->1->2->3->3, return 1->2->3. #include #include typedef

2017-09-22 20:16:33 235

原创 Merge Two Sorted

Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.#include #include #include typedef int ElemType; typedef

2017-09-21 16:57:14 214

转载 关于真机调试DDMS中的data文件夹打不开的解决方法

转载自http://www.cnblogs.com/java-qzq/p/5798673.html 今天在开发的时候需要导出程序中的数据库文件查看数据,数据库文件默认就在/data/data/应用包名/databases/数据库名 这个路径下,我就去DDMS下面去找。就发现死活打不开data文件夹,最后查出来是因为data文件夹的权限问题。需要修改文件夹的权限。具体步骤如下:

2017-09-20 21:38:04 701

转载 手机升级到Android 7.0后,打开Android Device Monitor(DDMS)后,File Explorer中显示一片空白。

版权声明:本文为 Abracadabra(爱博客大伯) 原创文章,转载请注明作者及链接,请勿用于任何商业用途。 1. 问题 将手机升级到Android 7.0后,打开Android Device Monitor(DDMS)后,File Explorer中显示一片空白。如下: Android Device Monitor (DDMS)的版本如下: 不管用m

2017-09-20 20:42:00 1050

原创 Integer to Roman

Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999. #include #include #include int main() { char ch[1000]; scanf("%s",ch); p

2017-09-20 19:02:26 196

sqoop安装工具

里面包含sqoop的安装包以及mysql的驱动包。可以一次下载就够了。

2018-11-15

beijingpm2010

这是在写numpy实战时,作为数据源进行分析;如果想要查看,请寻找文章

2018-10-09

Material Design的基本控件

里面包含CardView、Toolbar、Snackbar、CoordinatorLayout、DrawerLayout、FloatingActionButton、NavigationView的用法

2017-11-06

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除