码迷,mamicode.com
首页 >  
搜索关键字:return    ( 60766个结果
reference to non static member function must be called
编译器会给类的非静态成员函数添加一个this参数。 int square(int num) { return num * num; } class Hehe{ public: int square(int num) { return num * num; } }; int main() { int ...
分类:其他好文   时间:2021-06-28 20:58:16    阅读次数:0
用最少数量的箭引爆气球
题目链接:用最少数量的箭引爆气球 题目描述: 题解: class Solution { public: static bool cmp(vector<int> &a, vector<int> &b) //按右边界排序 { return a[1] < b[1]; } int findMinArrowS ...
分类:其他好文   时间:2021-06-28 20:44:14    阅读次数:0
session共享问题
问题:按照正常的程序将session 共享引入工程,但是一直取不到 原因:springboot 的版本不同导致,存session的springboot 用的是springboot1.5.6,而取session的springboot版本是2.1.5。 解决方式1:统一springboot的版本(特别推 ...
分类:其他好文   时间:2021-06-28 20:43:18    阅读次数:0
[LeetCode] 215. Kth Largest Element in an Array_Medium tag: Array, Heap
Given an integer array nums and an integer k, return the kth largest element in the array. Note that it is the kth largest element in the sorted order ...
分类:其他好文   时间:2021-06-28 20:35:29    阅读次数:0
Springboot(一) @Conditional条件装配
当满足某个条件的时候,才进行组件的注入 常见的如下: run.containsBean用于判断是否含有某个组件 System.out.println("++++++++++++++++++++++++++++++"); boolean tom = run.containsBean("tom"); S ...
分类:编程语言   时间:2021-06-28 20:10:39    阅读次数:0
进程创建
fork 是一个系统调用,流程的最后会在 sys_call_table 中找到相应的系统调用 sys_fork。 SYSCALL_DEFINE0(fork) { ...... return _do_fork(SIGCHLD, 0, 0, NULL, NULL, 0); } long _do_fork ...
分类:系统相关   时间:2021-06-28 20:00:09    阅读次数:0
每日温度
https://leetcode-cn.com/problems/daily-temperatures/ 思路1: 使用单调递减栈 public int[] dailyTemperatures(int[] T) { if (T == null || T.length == 0) return nul ...
分类:其他好文   时间:2021-06-28 19:54:53    阅读次数:0
做题记录 Luogu P5960
Luogu P5960 【模板】差分约束算法 差分约束模板题。 #include<bits/stdc++.h> using namespace std; #define N 1000005 int first[N], Next[N], to[N], w[N], tot; int dis[N], vi ...
分类:其他好文   时间:2021-06-28 19:53:48    阅读次数:0
10.查找数组中未出现的最小正整数
1.题目如下 2.解题代码 #include<stdio.h> #include<stdlib.h> int finMissMin(int a[],int n) { int i,*b; b=(int *)malloc(sizeof(int)*n); //初始化为0 for(i=0;i<n;i++) ...
分类:编程语言   时间:2021-06-28 19:41:00    阅读次数:0
插入排序
1.原理: 2.代码实现: 1 /* 2 * insert:实现插入排序 3 * ary[ARRAY] 需要排序的数组 4 * @return 5 * [ARRAY] 排序后的新数组 6 * by js0205 7 */ 8 function insert(ary) { 9 let handle = ...
分类:编程语言   时间:2021-06-28 19:14:34    阅读次数:0
60766条   上一页 1 ... 4 5 6 7 8 ... 6077 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!