DateSource 定义注解 DateSourceContext 定义ThreadLocal上下文 DataSourceRouteAspect会拦截注解dataSource的方法,业务方法之前设置数据源,设置到ThreadLocal中 也可根据业务参数自主设置数据源,达到分库效果 DruidCon ...
分类:
数据库 时间:
2020-07-26 19:38:07
阅读次数:
100
题目链接 https://leetcode-cn.com/problems/minimum-depth-of-binary-tree/ 题解一 递归解法 我写的 说明详见注释 // Problem: LeetCode 111 // URL: https://leetcode-cn.com/probl ...
分类:
其他好文 时间:
2020-07-26 19:32:58
阅读次数:
60
排列 #include<iostream> #include<iomanip> using namespace std; int a[25]; bool b[25]; int n,m; void print() { for(int i=1;i<=m;i++) cout<<setw(3)<<a[i]; ...
分类:
其他好文 时间:
2020-07-26 15:48:22
阅读次数:
54
前言 托管资源到是好,有垃圾回收资源可以帮忙,即使需要我们的一些小小的调试来优化,也是让人感到欣慰的。但是非托管资源就显得苍白无力了,需要程序员自己去设计回收,同样有设计的地方也就能体现出程序员的设计水平。 托管类在封装对非托管资源的直接引用或者间接引用时,需要制定专门的规则,确保非托管资源在回收类 ...
采用行(列)扫描法: 1.初始化:所有行线输出低电平,所有列线上拉输入 2.确定列:输入为低电平的一列 3.确定行:轮流让行线输出低电平,其它行线输出高电平。若使得上一步确定的列线输入为低电平,可以确定按键所在行就是当前输出低电平的一行 4.显示数码:列号(0~3) + 4 * 行号(0~3) #i ...
分类:
其他好文 时间:
2020-07-26 01:51:08
阅读次数:
72
struct bign { int len, s[numlen]; bign() { memset(s, 0, sizeof(s)); len = 1; } bign(int num) { *this = num; } bign(const char *num) { *this = num; } b ...
分类:
其他好文 时间:
2020-07-26 01:31:46
阅读次数:
58
1. math package com.qf.demo02; public class Test2Math { public static void main(String[] args) { System.out.println(Math.PI);//圆周率,3.141592653589793 S ...
分类:
编程语言 时间:
2020-07-26 01:31:27
阅读次数:
68
/*革启博客,革启网,袁欢,袁欢的博客,袁欢博客 版本:vs2019社区版 功能;编写一个函数求1+1/2+1/3+...+1/n的值 */ #include<stdio.h> float count(int n) { int i; float sum; if (n <= 0) { printf(" ...
分类:
其他好文 时间:
2020-07-26 00:17:01
阅读次数:
120
一.数组的概念 1.数组是Java里自带的引用数据类型,是一个同一种数据类型的集合,数组的构成有四大要素:数组的数据类型,数组的长度,数组的数组名,数组的下标:语法如 int[] a;a = new int[10]; String[] s = {"aaa","bbb","ccc"}; Student ...
分类:
编程语言 时间:
2020-07-26 00:08:58
阅读次数:
87
1 #include <iostream> 2 #include <algorithm> 3 #include <cstring> 4 #include <vector> 5 using namespace std; 6 const int SIZE = 1e6; 7 int heap[SIZE], ...
分类:
编程语言 时间:
2020-07-25 23:58:20
阅读次数:
91