码迷,mamicode.com
首页 >  
搜索关键字:ret    ( 30742个结果
2021.5.29 链表
一.为什么要用链表而不是数组 数组在定义了大小以后就不能随便改变了,而且数组要在内存中申请一块连续的区域,而链表可以随时增加或者减小元素,它的存储空间也是动态的。这对于内存的使用更加有性价比。 二.链表的组成部分 链表由头指针(不包括数据区域,只包含指向头节点的指针构成),头节点,常规节点,尾指针组 ...
分类:其他好文   时间:2021-06-02 16:09:29    阅读次数:0
ShardingSphere你还不会吗?(第一篇)
ShardingSphere你还不会吗?(第一篇) 作者:星晴(当地小有名气,小到只有自己知道的杰伦粉) 一.需求 我们做项目的时候,数据量比较大,单表千万级别的,需要分库分表,于是在网上搜索这方面的开源框架,最常见的就是mycat,sharding-sphere,最终我选择后者,用它来做分库分表比 ...
分类:其他好文   时间:2021-06-02 15:46:34    阅读次数:0
Architecture Reference-Read&Write set semantics
https://hyperledger-fabric.readthedocs.io/en/latest/readwrite.html Read-Write set semantics This document discusses the details of the current impleme ...
分类:其他好文   时间:2021-06-02 15:28:52    阅读次数:0
22. 括号生成
package leetcode; import java.util.ArrayList; import java.util.List; public class demo_22 { public List<String> generateParenthesis(int n) { List<Stri ...
分类:其他好文   时间:2021-06-02 14:38:15    阅读次数:0
设计模式 javascipt - singleton 单例模式实现
//1. ES5 闭包实现单例模式 let singleton = (function(){ let instance = null; return function(name){ this.name = name; instance = instance? instance : this; ret ...
分类:编程语言   时间:2021-06-02 14:36:57    阅读次数:0
快读快写
ps:getchar()只读入一个字符 快读快写的应用情景:数据量较大时(数据很小的时候没什么用还浪费写代码的时间) 优点:快 应用限制:只能读入整数 原理:通过读入字符的方式来优化数的读入(这里认为字符的输入比传统型整数的输入更快) 快读模板: inline int read() { int x= ...
分类:其他好文   时间:2021-06-02 14:14:44    阅读次数:0
将两个顺序数组合并 并查找中位数(时间复杂度低)
#include<stdio.h> int main(){ int n; cin>>n; for(int i=1;i<=n;i++)cin>>a[i]; for(int i=1;i<=n;i++)cin>>b[i]; int x=1,y=1,tot=0; while(x<=n&&y<=n){ if( ...
分类:编程语言   时间:2021-06-02 13:49:15    阅读次数:0
实验5
#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:其他好文   时间:2021-06-02 13:32:46    阅读次数:0
控制器注解参数判空
控制器注解参数判空 调用效果展示 ## 正常 { "id": 14, "name": "张三", "sex": "男" } ## 姓名不能为空 { "code": -1, "message": "姓名不能为空", "data": null } ## 性别不能为空 { "code": -1, "mes ...
分类:其他好文   时间:2021-06-02 13:13:35    阅读次数:0
CF1509C The Sports Festival
原题链接 题意:每次加一个数,要求最小 $\sum max_ - min_, 题解:本来以为就是纯贪心,然后发现竟然是区间dp,就是先排完序,然后就加入然后取 \(min\)。 代码: #include <iostream> #include <bits/stdc++.h> using namesp ...
分类:其他好文   时间:2021-06-02 13:04:14    阅读次数:0
30742条   上一页 1 ... 12 13 14 15 16 ... 3075 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!