自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

让我写标题真是一脸懵~

Nothing is too late,it just you didn't want to do.

  • 博客(7)
  • 收藏
  • 关注

原创 Leetcode_cn-796. 旋转字符串[JAVA]

原题地址 public boolean rotateString(String A, String B) { if(A.equals(B)) return true; char []a=A.toCharArray(); char []b=B.toCharArray(); int len=b.length;...

2018-05-31 09:01:09 568 1

原创 Leetcode_cn-118. 杨辉三角[JAVA]

题目链接 class Solution { public List<List<Integer>> generate(int numRows) { List<List<Integer>> column = new ArrayList<>(); for(int i=0;i<numRows;i...

2018-05-30 19:16:34 250

原创 Leetcode_cn-旋转图像,时间复杂度O(2N^2)[JAVA]

旋转图像 public static void rotate(int[][] matrix) { int len=matrix.length; int temp[][]=new int[matrix.length][matrix.length]; for(int j=0;j<len;j++) { int q=0; ...

2018-05-29 13:45:20 297

原创 Leetcode_cn-两数相加[JAVA]

解答过程 /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ class Solution { public ListNode addTw...

2018-05-29 11:51:26 396

原创 JAVA EE-操作Jedis.clients的过程

Jedis.clients的使用过程JedisPoolConfig jedis连接池配置类public class JedisPoolConfig extends GenericObjectPoolConfig { public JedisPoolConfig() { // defaults to make your life with connection pool easier :)

2017-11-02 15:57:22 238

原创 python3.6+yeelink的数据点操作【菜鸟学习笔记-1】

前言 最近在玩树莓派+传感器,想实现树莓派上传数据到平台定时监控,因此找到“yeelink”平台,但是貌似“yeelink”好久没更新了= =,上一次都更新的新闻都是2014年的,没事没事,反正一样可以用,虽然手机APP版本我试了很多个手机依旧不能查看到数据。吐槽吐槽 操作环境 PYTHON3.6 略去创建设备和传感器的步骤 yeelink API v1.1 api_url:

2017-04-05 11:28:09 703

原创 python-获取提取网页url爬虫学习(1)

学习

2016-12-28 11:23:20 787

空空如也

空空如也

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

TA关注的人

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