前言 反转链表是程序员必备的基本素养,经常在面试、笔试的过程中出现。一直觉得反转链表实现代码不是很好理解,决定搬leetcode那道经典反转链表题出来,用十多张图去解析它,希望加深大家对链表反转的理解,谢谢阅读。 leetcode的反转链表原题&答案 题目描述: 反转一个单链表。 分析: 假设存在链 ...
分类:
其他好文 时间:
2020-02-09 09:35:45
阅读次数:
81
# -*- coding: utf-8 -*- from PIL import Image import numpy as np def print_photo(photo_file, width=120, k=1.0, reverse=False, outfile=None): """打印照片,默 ...
分类:
其他好文 时间:
2020-02-08 15:23:11
阅读次数:
295
easy_Maze 从题目可得知是简单的迷宫问题 int __cdecl main(int argc, const char **argv, const char **envp) { __int64 v3; // rax int v5[49]; // [rsp+0h] [rbp-270h] int ...
分类:
其他好文 时间:
2020-02-08 13:50:02
阅读次数:
291
Given a string, you need to reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order. E ...
分类:
其他好文 时间:
2020-02-08 00:01:55
阅读次数:
97
REMOTE FILE INCLUSION Similar to local file inclusion. But allows an attacker to read ANY file from ANY server. Execute PHP files from other servers o ...
分类:
Web程序 时间:
2020-02-07 22:45:28
阅读次数:
143
一、过滤器 过滤器分为局部过滤器和全局过滤器。 1.局部过滤器 <body> <div id="app"> </div> <script src="./static/vue.js"></script> <script> // 定义App let App = { data() { return { m ...
分类:
其他好文 时间:
2020-02-07 20:29:59
阅读次数:
62
链接: "LeetCode689" 给定数组?nums?由正整数组成,找到三个互不重叠的子数组的最大和。 每个子数组的长度为k,我们要使这3 k个项的和最大化。 返回每个区间起始索引的列表(索引从 0 开始)。如果有多个结果,返回字典序最小的一个。 示例: 输入: $[1,2,1,2,6,7,5,1 ...
分类:
移动开发 时间:
2020-02-07 18:28:31
阅读次数:
81
1. 集合:分单列(Collection)和双列(Map); 2. 集合中只能存引用类型数据(若存基本类型,则装箱),长度随意;集合区别于数组,数组:可存引用类型 + 基本类型,通吃!长度固定; 3. max(); sort(); reverse(); shuffle();.. 3.1单例(List ...
分类:
其他好文 时间:
2020-02-07 14:51:09
阅读次数:
71
Given a 32-bit signed integer, reverse digits of an integer. Example 1: Input: 123Output: 321Example 2: Input: -123Output: -321Example 3: Input: 120Ou ...
分类:
其他好文 时间:
2020-02-06 19:49:49
阅读次数:
65
1 <script> 2 var arr1 = ["a","b","c",undefined,null]; 3 //reverse() 4 //反转数组的顺序 5 //arr1.reverse(); 6 //alert(arr1); //输出:,,c,b,a 7 8 var arr2 = [1,5, ...
分类:
编程语言 时间:
2020-02-06 16:13:16
阅读次数:
76