*************************** 3. row *************************** created_at: 2020-07-16 00:50:46 updated_at: 2020-07-16 00:54:47 version: 1.7 id: 126 uu ...
分类:
其他好文 时间:
2020-07-16 10:11:02
阅读次数:
64
输出二叉树中的叶子结点 void PreOrderPrintLeaves( BinTree BT ) { if( BT ) { if ( !BT-Left && !BT->Right )// 在二叉树的遍历算法中增加检测结点的“左右子树是否都为空”。 printf(“%d”, BT->Data ); ...
分类:
其他好文 时间:
2020-07-15 15:28:16
阅读次数:
72
转自:https://www.jianshu.com/p/a4bb58331107 1 # 2 # CORE PROPERTIES 3 # 4 5 # SPRING 相关配置 (ConfigFileApplicationListener) 6 spring.config.name= # config ...
分类:
移动开发 时间:
2020-07-14 21:49:30
阅读次数:
153
一:试验背景 1:异地备份了把原有服务器数据放在另外一个位置,避免些物理损害。 比把数据刻录光盘和原始数据放同房间了房间失火了备份数据也没有了要放另外地方避免了 就是备份的意义。 2:异地备份可以集中管理备份文件。 二:试验整体思路 1:要实现异地备份,必须使用域用户帐号来启动SQL Server服 ...
分类:
数据库 时间:
2020-07-14 18:17:45
阅读次数:
80
1、LeetCode 160 相交链表 题目链接:https://leetcode-cn.com/problems/intersection-of-two-linked-lists/ 编写一个程序,找到两个单链表相交的起始节点。 如下面的两个链表: 在节点c1开始相交。 示例 1: 输入:inter ...
分类:
其他好文 时间:
2020-07-14 18:13:25
阅读次数:
53
LINK:股票交易 题目确实不算难 但是坑点挺多 关于初值的处理问题我就wa了两次。 所以来谢罪。 由于在手中的邮票的数量存在限制 且每次买入卖出也有限制。 必然要多开一维来存每天的邮票数量。 那么容易想到$f_{i,j}$表示到了第$i$天有$j$张邮票的最大赚钱值。 每次需要间隔W天进行操作 W ...
分类:
其他好文 时间:
2020-07-14 16:34:00
阅读次数:
60
This week we are reading about the beginnings of Islam, and the simultaneous expansion of Christianity in the West. You may notice that the two overla ...
分类:
其他好文 时间:
2020-07-14 13:02:46
阅读次数:
101
本章节讲述的是怎样uniapp项目中实现在线预览文档功能。 web端: app端: 直接上干货:web-view组件,uinApp文档中有,不知道的朋友可以去官网查看哦。 web-view: <template> <web-view :src="link"></web-view> </templat ...
分类:
移动开发 时间:
2020-07-14 01:00:01
阅读次数:
674
集合类 他们都在 java.util包里 Iterator(迭代器) Collection List (有序可重复) ArrayList(常用) add remove contains size LinkedList(常用) getFirst() getLast() removeFirst() ad ...
分类:
编程语言 时间:
2020-07-13 21:43:45
阅读次数:
78
一、三种分页模式 1 PageNumberPagination from rest_framework.pagination import PageNumberPagination,LimitOffsetPagination,CursorPagination class Mypagination(P ...
分类:
其他好文 时间:
2020-07-13 20:04:39
阅读次数:
68