朴实飞鸟

文章
8
资源
0
加入时间
2年10月17天

android 仿微信多图选择器(带预览、照相功能)

实现了单选、多选 、拍照 、预览 等功能;先上图:    代码结构 下面不如正题:一、添加依赖、权限1)添加以下依赖dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' compile

leetcode 简单题目(python)1-20

1. Two Sum(e-1)Given an array of integers, return indices of the two numbers such that they add up to a specific target.You may assume that each input would have exactly one solution, and you may ...

高频算法和数据结构(三)

题目一https://leetcode.com/problems/longest-substring-without-repeating-characters/求一个字符串中,最长无重复字符子串长度解题:求子串和子数组的问题:先求以0结尾的答案,然后求1结尾的答案1)当前字符串上一次出现的位置2)i-1位置往左推的距离两个条件,哪个长要哪个public static int lengthOfLongestSubstring(String s) { if (s .