使用ECharts可以直接对他的 数据源 进行改变 ,然后重新渲染图形 ```javascript function(rsp){ if(rsp.status!=200){ layer.msg(rsp.msg); }else{ var myArrs1 = []; myArrs1.push( 'prod ...
分类:
其他好文 时间:
2020-01-12 19:49:38
阅读次数:
651
```javascript function Node() { this.endCount = 0 this.word = '' this.children = {} } class Tire { constructor() { this.root = new Node() } addWord... ...
分类:
其他好文 时间:
2019-12-28 22:44:48
阅读次数:
65
使用Tire 处理 javascript function Node(value) { this.word = null this.children = {} } class MagicDictionary { constructor() { this.root = new Node(null) } ...
分类:
其他好文 时间:
2019-12-28 10:10:23
阅读次数:
59
一眼看出是使用回溯法。 javascript function findWords(board, words) { var rows = board.length, cols = board[0].length, res = [] var visited = new Array(rows).fill ...
分类:
其他好文 时间:
2019-12-27 00:32:31
阅读次数:
136
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JavaScript 函数</title> </head> <body> <h3>JavaScript Function(Function:函数)</h3> <!-- 函数是由事件 ...
分类:
编程语言 时间:
2019-12-26 22:54:24
阅读次数:
129
好难,没几个月就忘记了 javascript function solveSudoku(board) { var result = [] function backtrack(x, y) { if (x == 9) { //打印所有 board.forEach(function (row) { r ...
分类:
其他好文 时间:
2019-12-15 16:48:39
阅读次数:
113
数独 javascript function isValidSudoku(board) { var rows = []//行 var cols = [] // 列 var cubes = []//9宫格 for (var i = 0; i ...
分类:
其他好文 时间:
2019-12-15 16:48:08
阅读次数:
111
生成多重括号,使用回溯法试探所有组合 javascript function generateParenthesis(n) { // Write your code here var res = [], condidate = [] function backtrack(n, left, right ...
分类:
其他好文 时间:
2019-12-15 11:01:21
阅读次数:
100
```javascript function threeSum(nums) { nums.sort((a, b) = a b); var res = []; if (nums.length 0 || nums[nums.length 1] 0 && nums[i] == nums[i 1]) { c ...
分类:
其他好文 时间:
2019-12-15 00:54:42
阅读次数:
104
取得第一个做样板,然后与第二个字符串比较,看它们是否有共同前缀,没有那么将前缀的缩短一点,从后面砍掉一个字符再比较,有了前缀就再与第三,第四个比较 javascript function longestCommonPrefix(strs) { if (strs.length == 0) return ...
分类:
其他好文 时间:
2019-12-14 22:47:38
阅读次数:
80