E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
@return
使用gulp将项目中的图片压缩为webp格式
constwebp=require('gulp-webp');gulp.task('image',function(){
return
gulp.src(
天上月丶
·
2024-02-08 00:27
JS对数组中的对象按相同值进行分组
array.forEach((o)=>{letgroup=JSON.stringify(f(o));groups[group]=groups[group]||[];groups[group].push(o);});
return
Object.keys
Min_nna
·
2024-02-07 23:31
js
jquery功能
javascript
开发语言
ecmascript
力扣之链表9—回文链表
方法1将链表元素存入列表后判断但其时间复杂度和空间复杂度为O(n)classSolution:defisPalindrome(self,head:ListNode)->bool:ifnothead:
return
Truels
程序媛的攻城之路
·
2024-02-07 23:50
算法与数据结构
链表
指针
数据结构
c# 日历帮助类
publicstaticintGetDaysByYear(intyear){intcnt=0;if(IsRuYear(year)){cnt=366;//闰年多1天即:2月为29天}else{cnt=365;//--非闰年少1天即:2月为28天}
return
c
vbloveshllm
·
2024-02-07 23:19
c#
java
前端
[力扣 Hot100]Day23 反转链表
head->next)
return
head;ListNode*p1=head;ListNode*p2=head->next;ListNode*p3=head
谛听misa
·
2024-02-07 23:48
力扣Hot100题
leetcode
链表
算法
php ascii与中文互转
$temp_str[1];}
return
($asc);}functionasci
道甚夷
·
2024-02-07 23:17
php框架
php
android
开发语言
【坚持每日一题8.22】539. 最小时间差
输出:1示例2:输入:timePoints=["00:00","23:59","00:00"]输出:0提示:2timePoints){intn=timePoints.size();if(n>1440){
return
0
程序员小2
·
2024-02-07 23:11
【Linux取经路】探寻shell的实现原理
读取键盘输入的指令三、指令切割四、普通命令的执行五、内建指令执行5.1cd指令5.2export指令5.3echo指令六、结语一、打印命令行提示符constchar*getusername()//获取用户名{
return
getenv
春人.
·
2024-02-07 23:07
Linux
linux
运维
服务器
c# Http Get Post Put Delete 请求帮助类
//////Url地址///编码格式gb2312utf-8,默认utf-8///publicstaticstringHttpGet(stringurl,stringencoding="utf-8"){
return
HttpRequest
vbloveshllm
·
2024-02-07 23:57
c#
http
java
Leetcode55.跳跃游戏
于是乎看了解答,使用贪心算法classSolution{public:boolcanJump(vector&nums){intk=0,n=nums.size();for(inti=0;ik)
return
false
歪比巴卜的棒棒糖
·
2024-02-07 22:23
游戏
算法
leetcode
vue+elementPlus el-table组件列自适应宽度
column写一个动态的width根据内容计算列宽exportdefault{methods:{/***遍历列的所有内容,获取最宽一列的宽度*@paramarr*/getMaxLength(arr){
return
arr.reduce
土豆丶杨
·
2024-02-07 22:20
vue.js
elementui
javascript
JS数组对象去重方法
this.alpha.concat(this.letters)letresult=letterArr.reduce((result,item)=>{result[item["letter"]]=item;
return
result
noyanse
·
2024-02-07 22:44
基于泰勒(Taylor)中值定理的低开销快速距离算法(Fast_Distance_2D)
在一般计算点和点的距离的时候,一般会利用平方根公式写成这样:doubledist(TwoCoor&o1,TwoCoor&o2){
return
sqrt((pow((o1.getX()-o2.getX())
星空_MAX
·
2024-02-07 22:33
算法
数学建模
c++
C++17 ———— std::optional、std::variant和std::any
optionalmanagesanoptionalcontainedvalue,i.e.avaluethatmayormaynotbepresent.Acommonusecaseforoptionalisthe
return
valueofafunctionthatmayfail
弹吉他的小刘鸭
·
2024-02-07 22:02
C++
代码随想录算法训练营第二十七天|● 39. 组合总和 ● 40.组合总和II ● 131.分割回文串
result;vectorpath;voidbacktracking(vector&candidates,inttarget,intsum,intstartIndex){if(sum>target){
return
一枚清澈愚蠢的研究生
·
2024-02-07 22:29
letcode
算法
数据结构
leetcode
代码随想录算法训练营第十四天|● 理论基础 ● 递归遍历 ● 迭代遍历 ● 统一迭代
这样二叉树的前序遍历,基本就写完了,再看一下完整代码:前序遍历:classSolution{public:voidtraversal(TreeNode*cur,vector&vec){if(cur==NULL)
return
一枚清澈愚蠢的研究生
·
2024-02-07 22:59
letcode
算法
数据结构
2024-02-04 进程间通讯代码 work
定义进程号变量pid_tpid=-1;//定义存放管道文件描述符的数组intpipefd[2]={0};//创建管道文件if(pipe(pipefd)==-1){perror("pipeerror");
return
qin-新征程
·
2024-02-07 22:57
c++
开发语言
2024-02-05 单向、双向链表 work
存储数据元素datatypedata;//指针域:存储下一个节点的地址structNode*next;}*Linklist;/**function:创建一个节点*@param[in]*@param[out]*@
return
qin-新征程
·
2024-02-07 22:57
链表
数据结构
美团面试题(外包实战笔试题)
首先第一道阿里让我用arr=[3,[[7,[1,5]],4],8,[6]];将他转化为一个平铺的数组,并将他转化为从小大的顺序排列方法一functionflattenAndSort(array){
return
array.reduce
编代码的小王
·
2024-02-07 22:56
前端
javascript
面试
golang学习笔记--函数
funcmain(){varaint=1varbint=2c:=add(a,b)fmt.Println(c)}funcadd(aint,bint)(int){
return
a+b}函数调用机制值传递packagemainimport"fmt"functest
飞鸟malred
·
2024-02-07 21:54
golang
gopher
笔记
golang
java
开发语言
golang学习笔记--包
utils")funcmain(){varcint=0c=utils.Add(1,2)fmt.Print(c)}packageutils//名称第一个字母要大写funcAdd(aint,bint)(int){
return
a
飞鸟malred
·
2024-02-07 21:54
golang
gopher
笔记
golang
开发语言
后端
Antd的Select使用tagRender时,手动点选删除一个tag,界面展示上会同时消失两个的解决方法
onClose}=props;constonPreventMouseDown=(event)=>{event.preventDefault();event.stopPropagation();};
return
一朵小浪花儿
·
2024-02-07 21:14
知识点记录
javascript
前端
开发语言
antd
react
js取出对象数组中对应的value值
functiongetNewArr(arrs){letnewArr=arrs.map(item=>{letcurKey=Object.keys(item)//Object.keys可以提取出对象中的key值,注意取出的key是数组
return
item
一朵小浪花儿
·
2024-02-07 21:43
js
javascript
es6
本题要求实现一个函数,输出n行空心的数字金字塔。
voidhollowPyramid(intn);裁判用例#includevoidhollowPyramid(intn);intmain(){intn;scanf("%d",&n);hollowPyramid(n);
return
0
light.849
·
2024-02-07 21:35
日常
c语言
c++
算法
PTA函数部分20题全部答案
intmain(){doublex1,y1,x2,y2;scanf("%lf%lf%lf%lf",&x1,&y1,&x2,&y2);printf("dist=%.2f\n",dist(x1,y1,x2,y2));
return
0
light.849
·
2024-02-07 21:35
日常
算法
LeetCode 3Sum Closest
Givenanarraynumsofnintegersandanintegertarget,findthreeintegersinnumssuchthatthesumisclosesttotarget.
Return
thesumofthethreeintegers.Youmayassumethateachinputwouldhaveexactlyonesolution.Example
manyGrasses
·
2024-02-07 21:55
map reduce函数
map:将一个函数作用于一个序列内的所有值deffunc(x):
return
x*xa=[1,2,3,4,5,6,7,8]print(list(map(func,a)))#要显示序列,先转化为listreduce
啊丢_
·
2024-02-07 21:51
python
python
uniapp禁止页面滚动
@touchmove.stop.prevent="moveHandle"moveHandle(){
return
;}
六角形的雪花
·
2024-02-07 21:29
Day 38 | 动态规划 理论基础 、 509. 斐波那契数 、 70. 爬楼梯 、746. 使用最小花费爬楼梯
理论基础文章讲解视频讲解动态规划五部曲509.斐波那契数题目文章讲解视频讲解思路:classSolution{publicintfib(intn){if(n<2)
return
n;inta=0,b=1,c
小小白和纯牛奶
·
2024-02-07 20:48
二月红
动态规划
算法
STL学习笔记(16)常用STL算法
常用遍历算法for_each/*遍历算法遍历容器元素@parambeg开始迭代器@paramend结束迭代器@param_callback函数回调或者函数对象@
return
函数对象*/for_each(
轻舞飞扬SR
·
2024-02-07 20:45
C++
stl
数据结构
算法
c++
algorithm
从MVC到MVVM
functionModel(options){this.data=options.datathis.resource=options.resource}Model.prototype.fetch=function(id){
return
axios.get
kiterumer
·
2024-02-07 20:04
JavaScript高级:异常和debugger调试
//会终止程序}
return
x+y}console.log(fn())2捕获异常try...catch捕获异常try{//可能抛出异常的代码constp=document.querySelector('
是小蟹呀^
·
2024-02-07 20:10
JavaScript
javascript
ES6 展开语法(...)与剩余参数
//使用apply()方法展开functionf(a,b){
return
a+b;}constc=[1,2];//apply(
花生吃花生
·
2024-02-07 20:06
ES6
javascript
数据结构
前端
tableview
functableView(_tableView:UITableView,heightForRowAtindexPath:IndexPath)->CGFloat{switchindexPath.section{case0:
return
250default
花开半夏又一年
·
2024-02-07 20:27
应用原码,反码和补码的几个小题
#includeintmain(){chara=-1;signedcharb=-1;unsignedcharc=-1;printf("a=%d,b=%d,c=%d",a,b,c);
return
0;}分析
Adv_Ice
·
2024-02-07 20:20
c++
补码
内存结构
函数
函数类型letgreetUnnamed:(name:string)=>stringgreetUnnamed=function(name:string):string{if(name){
return
`Hi
Mistic_YK
·
2024-02-07 19:17
前端常用代码整理(不断更新中)— js,jquery篇
1.随机函数代码functiongetRandom(min,max){
return
Math.floor(Math.random()*(max-min+1))+min}2.倒计时代码letnow=+newDate
冰海恋雨.
·
2024-02-07 19:11
常用功能
javascript
前端
开发语言
代码随想录 Leetcode51. N 皇后
private:vector>res;voidbacktracking(intn,introw,vector&chessboard){if(row==n){res.push_back(chessboard);
return
meeiuliuus
·
2024-02-07 19:39
#
leetcode
---
hard
算法
代码随想录 Leetcode332. 重新安排行程
private:unordered_map>targets;public:boolbacktracking(inttickNum,vector&res){if(tickNum==res.size()-1){
return
true
meeiuliuus
·
2024-02-07 19:09
#
leetcode
---
hard
算法
代码随想录 Leetcode47. 全排列 II
voidbacktracing(vector&nums,vector&used1,vector&used2){if(path.size()==nums.size()){res.push_back(path);
return
meeiuliuus
·
2024-02-07 19:37
#
leetcode
---medium
算法
C Primer Plus(第六版)15.9 编程练习 第4题
#includevoidgetbitmun(intnum,inti);intmain(){getbitmun(4,2);
return
0;}voidgetbitmun(intnum,inti){intmask
apple_50569014
·
2024-02-07 19:34
C
Primer
Plus(第六版)
c语言
开发语言
【刷题日记】最长数对链
lefti,righti]且leftipairs【j】【1】时,dp【i】=max(dp【i】,dp【j】+1);代码(JavaScript):/***@param{number[][]}pairs*@
return
STATICHIT静砸
·
2024-02-07 19:44
算法题题解
算法
数据结构
2.7作业
#includeclassMagic{doublex;public:Magic(doubled=0.00):x(fabs(d)){}Magicoperator+(_constMagic&c____){
return
Magic
kdhbdsj8494
·
2024-02-07 19:14
c++
算法
开发语言
ts总结1、基本用法
一、类型声明:类型声明的写法,一律为在标识符后面添加“冒号+类型”变量声明:letfoo:string='123';函数声明:functiontoString(num:number):string{
return
String
皓月当空hy
·
2024-02-07 18:25
typscript
typescript
C语言-fun函数
m:n;
return
max;}fun的作用是返回m,n的最大值
需要什么私信我
·
2024-02-07 18:19
计算机二级-C语言
c++
C语言-函数-acos
acosSyntax:#includedoubleacos(doublearg);Theacos()function
return
sthearccosineofarg,whichwillbeintherange
会写bug的程序猿
·
2024-02-07 18:19
c
c语言
LeetCode 1351.统计有序矩阵中的负数(简单)
(grid)):forjinrange(len(grid[i])):if(grid[i][j]<0):breakif(grid[i][j]<0):count+=len(grid[i])-j
return
count
生信研究猿
·
2024-02-07 18:36
LeetCode刷题
leetcode
算法
职场和发展
Leetcode1351. 统计有序矩阵中的负数
funccountNegatives(grid[][]int)int{res:=0fori:=0;i
returnres
皮卡猴
·
2024-02-07 18:35
leetcode刷题
算法
数据结构
排序算法
双非本科准备秋招(18.1)—— 力扣二叉树
classSolution{publicintsumOfLeftLeaves(TreeNoderoot){if(root==null)
return
0;intLV=sumOfLeftLeaves(root.left
随心自风流
·
2024-02-07 18:00
数据结构
算法
leetcode
秋招
求职招聘
力扣
二叉树
33. Search in Rotated Sorted Array
image.png二分查找的扩展classSolution{public:intsearch(vector&nums,inttarget){if(nums.empty())
return
-1;intstart
刘小小gogo
·
2024-02-07 17:23
上一页
39
40
41
42
43
44
45
46
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他