240 发简信
IP属地:山西
  • 206

    Q:反转一个单链表。 示例: 输入: 1->2->3->4->5->NULL输出: 5->4->3->2->1->NULL进阶:你可以迭代或递归...

  • Resize,w 360,h 240
    android开发艺术探索 笔记(一)

    第一章Activity的启动与生命周期 正常情况下的启动状态 基于书上说的屏幕的点亮熄灭以及手指的触摸,我个人试了一下 Activity刚启动时...

  • 第三题——Longest Substring Without Repeating Characters

    Given a string, find the length of the longest substring without repeati...

  • 第二题——Add Two Numbers

    You are given two linked lists representing two non-negative numbers. Th...

  • 第一题——Two Sum

    Given an array of integers, return indices of the two numbers such that ...

  • 关于LeetCode

    刷刷题,作为一个算法渣渣,锻炼一下,争取一周做几道题。 地址:https://leetcode.com/

  • android动画二(Frame Animation)

    这一部分比较简短,也很好理解,不同于前面的视图动画,FrameAnimation(也可以叫DrawableAnimation)的动画是逐帧合成的...

  • Resize,w 360,h 240
    android动画一(View Animation)

    开一个坑,边学边总结一下学到的android动画。 这里参考并使用了部分图片与总结,来自博主** http://blog.csdn.net/ya...

  • Resize,w 360,h 240
    acticity的四种启动模式

    activity的四种启动模式分别为 standard singleTop singleTask singleInstance 首先是stand...