绿叶萌飞
绿叶萌飞
全部文章
分类
Android(41)
Android Studio(13)
eclipse(1)
javascript(1)
java基础(19)
java并发编程(1)
JVM(2)
leetcode(11)
linux命令行(译文)(38)
MySQL(1)
PTA(8)
个人js代码笔记——不详细解释(10)
其他(1)
周记随笔(7)
多线程(2)
我的android学习笔记(22)
数据结构与算法(85)
编程时光(5)
编程语言(20)
蓝桥杯(5)
计算机常用基础(1)
计算机网络(9)
迁移牛客网说明(1)
归档
标签
去牛客网
登录
/
注册
新手lcy
博客见这里https://liuchenyang0515.blog.csdn.net
全部文章
(共304篇)
android学习笔记----Fragment
目录 Fragment详解见链接 静态添加碎片 动态添加碎片 模拟微信主界面 Fragment之间的通信 关于Fragment官方文档:https://developer.android.google.cn/guide/components/fragments?utm_so...
2018-11-11
0
545
android简易智能容错计算器
看了一些网上的代码,感觉多少有点问题,有的不能计算浮点数,有的不能计算多位数,或者没办法保证乘除法在加减法的前面,或者不能与负数进行混合运算。 我实现的如下: 特点是:在按“=”之前智能预算结果显示,点击按钮,按钮颜色变化 思路是:将输入的中缀表达式转换成后缀表达式进行计算 难点是:带负数的...
2018-11-04
0
513
哈希表中线性探测再散列法及等概率条件下平均查找长度试题分析
题目来源:2010-408_计算机学科专业基础综合 链接:https://www.nowcoder.com/questionTerminal/717e56c82bdf4b40aa73902c66b599b4 将关键字序列(7 . 8 . 30 . 11 . 18 . 9 . 14)散列存储到散列表...
2018-10-09
1
585
11. Container With Most Wate(盛最多水的容器)
Given n non-negative integers a1, a2, ..., an , where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endp...
leetcode
2018-10-08
0
541
顺时针打印矩阵
输入一个矩阵,按照从外向里以顺时针的顺序依次打印出每一个数字,例如,如果输入如下4 X 4矩阵: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 则依次打印出数字1,2,3,4,8,12,16,15,14,13,9,5,6,7,11,10. 题目链接:https://...
2018-10-04
0
421
topK问题
给定一个字符串数组,让你找出前k个出现次数最多的字符串 比如: 输入: 3 1 2 4 5 6 5 8 6 6 9 输出: No.1:6, times:3 No.2:5, times:2 No.3:2, times:1 输入: 3 abc abc aaa snfh asnfdk aaa...
2018-10-03
0
490
9. Palindrome Number(回文数)
Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Input: 121 Output: ...
leetcode
2018-10-01
0
429
翻转字符串
比如字符串“dog loves pig”,翻转成“pig loves dog” “how are you”翻转成“you are how” 思路是把字符串整体逆序,然后找到每个单词,再把每个单词的字符逆序一遍 可是现在的面试要求就是不能用String,不能用库函数 给定你的就是字符数组cha...
2018-09-30
1
466
3. Longest Substring Without Repeating Characters(无重复字符的最长子串)
Given a string, find the length of the longest substring without repeating characters. Example 1: Input: "abcabcbb" Output: 3 Explanatio...
leetcode
2018-09-13
0
522
448. Find All Numbers Disappeared in an Array(找到所有数组中消失的数字)
Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once. Find all the elements of [1, n]...
leetcode
2018-09-13
0
450
首页
上一页
19
20
21
22
23
24
25
26
27
28
下一页
末页