好物分享
-
SharePoint 获取列表的元数据信息(Metadata)
前言 我们在使用REST API的时候,经常需要列表项目的元数据信息,那么,我们该如何获取呢? 正文 SharePoint REST API就有一个好用的方法…… -
-
CommonsCollections5分析
CommonsCollections5 调用链 BadAttributeValueExpException.readObject() | TiedMapEntry.toString() | LazyMap.get() | Cha…… -
CommonsCollections6分析
CommonsCollections6 LazyMap的漏洞触发在get和invoke中,完全没有setValue什么事,这也说明8u71后不能利用的原因和AnnotationInvocationHandler#readObject …… -
CommonsCollection7分析
CommonsCollection7调用流程 调用链 HashTable.readObject() | TransformingComparator.compare() | InstantiateTransformer.transfor…… -
JSON解析教程博客
JSON 对象格式 1. 创建XStream 对象 XStream x = new XStream(); [2].修改类生成的节点名称 (默认节点名称为 包名.类名) x.alias("节点名称",类名.class); …… -
LeetCode知识点总结 – 872
LeetCode 872. Leaf-Similar Trees 考点难度TreeEasy 题目 Consider all the leaves of a binary tree, from left to right order, the values of those leave…… -
LeetCode知识点总结 – 783
LeetCode 783. Minimum Distance Between BST Nodes 考点难度TreeEasy 题目 Given the root of a Binary Search Tree (BST), return the minimum difference b…… -
-
JAVA手写算法 | 冒泡算法
目录 排序原理排序演示JAVA实现算法分析算法优化 冒泡排序(Bubble Sort)是一种基础的交换排序。 所谓交换排序就是通过元素的两两比较,判断是否符合要求,……