接着上篇来看 https://www.cnblogs.com/cuocuo/p/14329379.html <?php namespace Home\Controller; use Think\Controller; use \Think\Logs; class IndexController ex ...
分类:
Web程序 时间:
2021-01-27 13:29:47
阅读次数:
0
Arrays类 package com.kuang.array; ? import java.util.Arrays; ? public class ArrayDemo06 { public static void main(String[] args) { int[] a = {1, 2, 3, ...
分类:
其他好文 时间:
2021-01-27 13:26:51
阅读次数:
0
1、构造器注入 <bean id="user" class="com.wang.pojo.User"> <!--方式一--> <!-- <constructor-arg index="0" value="王野"/>--> <!--方式二,不建议使用,如果有多个参数,--> <!-- <constru ...
分类:
编程语言 时间:
2021-01-26 12:41:18
阅读次数:
0
language: C address // nt题,不解释 /** * Note: The returned array must be malloced, assume caller calls free(). */ int* printNumbers(int n, int* returnSiz ...
分类:
其他好文 时间:
2021-01-26 12:26:48
阅读次数:
0
题意 给出一个长为2n的序列,你需要设定一个数x,每一次你可以选择序列中的两个数a和b,满足a+b等于x,然后将ab从序列中去除,最后将x变为a和b较大的那个数。如果可以把序列全部消空,输出yes和最开始的x,然后输出每一步选择的两个数。否则输出no。 思路 我们可以知道的是每一步的两个数里面一定有 ...
分类:
其他好文 时间:
2021-01-25 11:17:31
阅读次数:
0
第1章 Redis初识 Redis 是什么 开源 基于键值的存储服务系统 多种数据结构 strings hash linked list sets sorted sets 高性能、功能丰富 Redis 的特性 速度快 持久化 多种数据结构 支持多种编程语言 功能丰富 简单 主从复制 高可用、分布式 ...
分类:
其他好文 时间:
2021-01-25 11:08:42
阅读次数:
0
#Hive 的函数 ##1.系统内置函数 1)查看系统自带的函数 show functions; show functions like "date"; 2)显示自带的函数的用法 desc function upper; desc function 'current_date' 记住带下划线的需要加 ...
分类:
其他好文 时间:
2021-01-25 11:02:17
阅读次数:
0
1、基本命令 select bar(number,0,4) from numbers(4); select now(); 数据导入:cat t.tsv| clickhouse-client --query "insert into t from tsv" 数据导出:clickhouse-client ...
分类:
其他好文 时间:
2021-01-25 10:52:34
阅读次数:
0
此博客链接:https://www.cnblogs.com/ping2yingshi/p/14311268.html 数组形式的整数加法 题目链接:https://leetcode-cn.com/problems/add-to-array-form-of-integer/ 题目 对于非负整数 X 而 ...
分类:
编程语言 时间:
2021-01-22 12:22:52
阅读次数:
0
环境: JDK1.8 Mysql 5.7 maven 3.6.1 IDEA SSM框架:配置文件的。 最好的方式:看官网文档; 1、简介 1.1、什么是Mybatis MyBatis 是一款优秀的持久层框架 它支持定制化 SQL、存储过程以及高级映射。 MyBatis 避免了几乎所有的 JDBC 代 ...
分类:
其他好文 时间:
2021-01-21 10:53:07
阅读次数:
0