今天在项目里遇到个这样的bug,element的el-cascader控件无法回显数据,经过调试后发现,是由于v-model所绑定的数组元素,必须为字符串类型才行,整数类型是无法回显的,需要做一次转换, 可以使用js数组…
分类:未分类
后缀数组倍增构造算法说解
后缀数组,作为一种高效的字符串处理数据结构,没有哈希算法的随机性,也没有 KMP 算法的侷限性,是作为一种较为全面而编程思想不甚复杂的数据结构加以应用。后缀数组应用最为广泛的一种构建方法是倍增构造,时间复杂度为 O(nl…
(leedcode)152. Maximum Product Subarray
//讨论区看到别人的解法,思路就是左到右,右到左扫描两遍,取最大的 //其中碰到0的时候,当作是分界符,重新计算这个值 public int maxProduct(int[] nums) { int max = Inte…
Python内置类型性能分析--list
一、timeit模块 timeit模块可以用来测试一小段Python代码的执行速度。 class timeit.Timer(stmt='pass', setup='pass', timer=<timer funct…
[LeetCode]--Best Time to Buy and Sell Stock
题目 Say you have an array for which the ith element is the price of a given stock on day i. If y…
9.16考试【广东省选】
作为一只蒟蒻,站在了一大堆大佬之中,所以对于本次考试我没有丝毫的信心,但是我依旧打算来一发题解报告 本次考试有四道题目,都是广东省选的老题目,当然有的很水,有的很难,我们按照先易后难的顺序来发表。 T4象棋比赛 T1倒水
有关求最大不含重复字符子字符串算法的C#实现
写了一个代码,是解决求最大不含重复字符子字符串的问题的 有兴趣的同仁可以看一看,指出有什么不足的地方 public int Fun(string st) { int count = st.Length; int coun…
15.3Sum
description: 15 3Sum 21.8% Medium Given an array S of n integers, are there el…
Subsets II
Given a list of numbers that may has duplicate numbers, return all possible subsets class Solution { /** * @pa…
151. Reverse Words in a String
description: 151 Reverse Words in a String 15.7% Medium Given an input string, revers…
Search Graph Nodes
Given a undirected graph, a node and a target, return the nearest node to given node which value of it is targ…
Zombie in Matrix
Given a 2D grid, each cell is either a wall 2, a zombie 1 or people 0 (the number zero, one, two).Zombies can …