码迷,mamicode.com
首页 >  
搜索关键字:javascript-function    ( 155个结果
ECharts从后端调用数据后,给ECharts重新渲染数据
使用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
leetcode 692. Top K Frequent Words
```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
leetcode 676. Implement Magic Dictionary
使用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
leetcode 212. Word Search II
一眼看出是使用回溯法。 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
JavaScript009,函数
<!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
leetcode 37. Sudoku Solver
好难,没几个月就忘记了 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
leetcode 36. Valid Sudoku
数独 javascript function isValidSudoku(board) { var rows = []//行 var cols = [] // 列 var cubes = []//9宫格 for (var i = 0; i ...
分类:其他好文   时间:2019-12-15 16:48:08    阅读次数:111
leetcode 22. Generate Parentheses
生成多重括号,使用回溯法试探所有组合 javascript function generateParenthesis(n) { // Write your code here var res = [], condidate = [] function backtrack(n, left, right ...
分类:其他好文   时间:2019-12-15 11:01:21    阅读次数:100
leetcode 15. 3Sum
```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
leetcode 14. Longest Common Prefix
取得第一个做样板,然后与第二个字符串比较,看它们是否有共同前缀,没有那么将前缀的缩短一点,从后面砍掉一个字符再比较,有了前缀就再与第三,第四个比较 javascript function longestCommonPrefix(strs) { if (strs.length == 0) return ...
分类:其他好文   时间:2019-12-14 22:47:38    阅读次数:80
155条   上一页 1 2 3 4 ... 16 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!