面试题 01.04. 回文排列 给定一个字符串,编写一个函数判定其是否为某个回文串的排列之一。回文串是指正反两个方向都一样的单词或短语。排列是指字母的重新排列。回文串不一定是字典当中的单词。 示例1:输入:"tactcoa"输出:true(排列有"tacocat"、"atcocta",等等) boo ...
分类:
其他好文 时间:
2020-09-17 23:59:18
阅读次数:
43
int* shuffle(int* nums, int numsSize, int n, int* returnSize){ int* arr = (int*)calloc(numsSize, sizeof(int)); int pst = 0; for (int i = 0; i < numsSi ...
分类:
编程语言 时间:
2020-09-17 15:41:19
阅读次数:
21
问题 给定一个整数数组 nums ,找到一个具有最大和的连续子数组(子数组最少包含一个元素),返回其最大和。 代码 贪心算法 核心思想就是检查之前 i-1 的元素和,如果小于零就舍弃——对应下面第六行代码 1 class Solution { 2 public: 3 int maxSubArray( ...
分类:
其他好文 时间:
2020-09-17 14:20:44
阅读次数:
24
1.以下代码执行后,console 的输出是? let x = 10;let foo = () => {console.log(x);let x = 20;x++;}foo(); 抛出 ReferenceError 2. var myObject = { foo: "bar", func: func ...
分类:
Web程序 时间:
2020-09-10 23:08:50
阅读次数:
60
修改文件:router/index.js 把 const router = new VueRouter({ routes }) 改成 const router = new VueRouter({ routes, scrollBehavior(to, from, saveTop) { if (save ...
分类:
其他好文 时间:
2020-09-10 22:32:43
阅读次数:
40
14.2.5 Connection Phase Packets Protocol::Handshake Initial Handshake Packet When the client connects to the server the server sends a handshake packe ...
分类:
数据库 时间:
2020-09-08 21:06:16
阅读次数:
67
公式原理 对于随机变量$X$,\(Y\),协方差$COV(X,Y)=E(X-\bar)(Y-\bar)=E(XY)-EXEY$ 假设选取n个样本即,对于总体$X$的样本即为$X_1=[x_1,x_2,x_3,...]\(,均值记为\)\bar=\frac{1}\sum_i$,$Y$同上 样本方差计算 ...
分类:
其他好文 时间:
2020-09-08 20:42:48
阅读次数:
82
定义在Controller中的Action方法大都返回一个ActionResult对象。ActionResult是对Action执行结果的封装,用于最终对请求进行响应。ASP.NET MVC提供了一系列的ActionResult,它们本质上是通过怎样的方式来响应请求的呢?这是这个系列着重讨论的主题。 ...
分类:
Web程序 时间:
2020-09-04 17:39:47
阅读次数:
66
1.静态效果图如下: 2.代码如下: (1)在menu.wxml中: <!--pages/menu/menu.wxml--> <!-- 轮播图 使用组件 --> <banner imgHeight="{{imgHeight}}" backgroundArr="{{backgroundArr}}" / ...
分类:
微信 时间:
2020-09-04 17:07:50
阅读次数:
59