题目描述 将给定的链表中每两个相邻的节点交换一次,返回链表的头指针例如,给出1->2->3->4,你应该返回链表2->1->4->3。你给出的算法只能使用常量级的空间。你不能修改列表中的值,只能修改节点本身。 Given a linked list, swap every two adjacent ...
分类:
其他好文 时间:
2020-04-29 00:52:16
阅读次数:
76
给出一个 32 位的有符号整数,你需要将这个整数中每位上的数字进行反转。
注意:假设我们的环境只能存储得下 32 位的有符号整数,则其数值范围为 [?2^31, 2^31 ? 1]。请根据这个假设,如果反转后整数溢出那么就返回 0。 ...
分类:
其他好文 时间:
2020-04-29 00:43:15
阅读次数:
54
https://baijiahao.baidu.com/s?id=1658762189755959240&wfr=spider&for=pc 报错:0/3 nodes are available: 1 node(s) had taints that the pod didn't tolerate, ...
分类:
其他好文 时间:
2020-04-28 20:28:19
阅读次数:
69
这次在用Cobalt Stike是http beacon时,突然好奇反向shell是怎么做的,做了一些整理,比较杂,把网络、windows PE结构、进程注入都回顾了一下。 0、引子 Set-StrictMode -Version 2 $DoIt = @' function func_get_pro ...
分类:
Web程序 时间:
2020-04-28 15:18:46
阅读次数:
66
1、排序 L.sort(reverse=False) 参数:缺省参数,非必选 作用:默认升序,即由小到大。需要降序时,加上参数reverse=True 返回值:返回排序后的列表L。不能用变量接收,列表L已经是排序后的了 2、追加单个元素 L.append(arg) 参数:必选参数,为空会报错 作用: ...
分类:
编程语言 时间:
2020-04-28 12:56:27
阅读次数:
79
记忆的碎片 首页 新随笔 管理 随笔 - 126 文章 - 0 评论 - 31 LINQ标准查询操作符(一)——select、SelectMany、Where、OrderBy、OrderByDescending、ThenBy、ThenByDescending和Reverse 一、投影操作符 1. S ...
分类:
其他好文 时间:
2020-04-27 15:13:46
阅读次数:
65
Given a linked list and a target value T, partition it such that all nodes less than T are listed before the nodes larger than or equal to target valu ...
分类:
其他好文 时间:
2020-04-26 09:21:42
阅读次数:
55
思路 不用其他数据结构,用递归实现原地逆置 需要设计两个递归函数: + 递归函数1:将栈底元素返回并且移除 + 递归函数2:使用到函数1的reverse方法 代码 执行流程分析 + getAndRemoveLastElement函数执行流程 首先从栈顶到栈尾,元素分别是1,2,3.对于getAndR ...
分类:
其他好文 时间:
2020-04-26 01:43:48
阅读次数:
60
题目描述 输入一个正整数数组,把数组里所有数字拼接起来排成一个数,打印能拼接出的所有数字中最小的一个。例如输入数组{3,32,321},则打印出这三个数字能排成的最小数字为321323。 思路 定义一种新的排序方式,例如a和b,如果ab<ba,则a<b 注意点 1.隐形的大数问题,因为拼接以后数可能 ...
分类:
编程语言 时间:
2020-04-25 19:07:12
阅读次数:
69
题目描述 Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. According to the definition of LCA on Wikipedia: “The ...
分类:
其他好文 时间:
2020-04-23 00:51:39
阅读次数:
73