1 数据结构的练习与巩固 2 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ...
分类:
其他好文 时间:
2020-07-04 23:03:47
阅读次数:
67
思路:利用快慢指针能实现在时间复杂度为O(n)的情况下,找到第k个节点 1,快指针先走k步 2,快慢指针一起走,直到快指针指向null时,慢指针所在位置就是倒数第k个节点 public static void main(String[] args) { ListNode eight = new Li ...
分类:
其他好文 时间:
2020-07-04 20:54:36
阅读次数:
92
加载单个js脚本 var loadSingleScript = function (src, callback) { var s = document.createElement('script'); s.async = false; s.src = src; s.addEventListener( ...
分类:
Web程序 时间:
2020-07-03 10:30:28
阅读次数:
68
1 public class SLList{ 2 //定义节点类型 3 public static class IntNode{ 4 public int item; 5 public IntNode next; 6 //构造方法,对对象初始化 7 public IntNode(int i,IntN ...
分类:
编程语言 时间:
2020-07-02 20:05:35
阅读次数:
109
页面强行注入jQuery这个脚手架,然后可以用jQuery干些事情了。 ...
分类:
Web程序 时间:
2020-07-01 23:50:58
阅读次数:
121
//获取当前日期 function getNowFormatDate() { var date = new Date(); var seperator1 = "-"; var seperator2 = ":"; var month = date.getMonth() + 1; var strDate ...
分类:
Web程序 时间:
2020-06-29 11:40:40
阅读次数:
83
1 Position Find(BinTree BST, ElementType X) { 2 if (!BST) return NULL;//查找失败 3 if (X > BST->Data) return Find(X, BST->Right);//在右子树中继续 4 else if (X < ...
分类:
其他好文 时间:
2020-06-29 00:32:28
阅读次数:
93
1.概述 数据结构主要包括列表,字符串,跳表,map,set等,底层基于c实现。 2.sds redis自建的字符串,数据结构 struct sdshdr{ int len; int free; char buf[]; } 主要解决缓存溢出问题。 3.链表 redis自建的链表保存了双向信息,包括头 ...
分类:
其他好文 时间:
2020-06-29 00:09:25
阅读次数:
61
import './assets/css/style.css'; const app = document.getElementById('app'); app.innerHTML = ` <div class="todos"> <div class="todos-header"> <h3 clas ...
分类:
编程语言 时间:
2020-06-28 22:33:52
阅读次数:
62
由于gui模式较为消耗性能和内存,jmeter推荐在做压测的时候使用non-GUI模式,因此本文我们讨论下jmeter在non-GUI模式下用法 ...
分类:
其他好文 时间:
2020-06-27 20:02:35
阅读次数:
63