Given a tree, you are supposed to list all the leaves in the order of top down, and left to right. Input Specification: Each input file contains one t ...
分类:
其他好文 时间:
2021-05-24 14:03:04
阅读次数:
0
简介 使用了C++自带的实现deque 和 unordered_map code class LRUCache { public: unordered_map<int, bool> map; unordered_map<int, int> mapV; deque<int> q; int capaci ...
分类:
其他好文 时间:
2021-05-24 13:58:51
阅读次数:
0
1.首先安装telnet服务,防止升级失败连接不上服务器 sudo apt-get install openbsd-inetd sudo apt-get install telnetd sudo /etc/init.d/openbsd-inetd restart 查看 telnet服务是否开启 su ...
分类:
系统相关 时间:
2021-05-24 13:36:25
阅读次数:
0
<el-tree :data="data" node-key="id" ref="tree" icon-class="el-icon-share" :props="defaultProps"> <template #default="scope"> <div class="custom-node"> ...
分类:
其他好文 时间:
2021-05-24 13:29:53
阅读次数:
0
主要来源于:https://www.cnblogs.com/lenve/p/10748453.html Spring中的注解 @ControllerAdvice作用: 处理全局异常 预设全局数据 请求参数预处理 处理全局异常 @ControllerAdvice结合 @ExceptionHandler ...
分类:
其他好文 时间:
2021-05-24 13:13:25
阅读次数:
0
jsoncpp是一个用于操作json数据的C++开源库 代码地址:https://github.com/open-source-parsers/jsoncpp 使用文档:http://open-source-parsers.github.io/jsoncpp-docs/doxygen/index.h ...
分类:
Web程序 时间:
2021-05-24 12:49:23
阅读次数:
0
起步 利用 html5 的 <video> 标签可以播放: 1 2 3 4 <video width="320" height="240" controls> <source src="/static/video/demo.mp4" type="video/mp4"> 您的浏览器不支持Video标签 ...
分类:
其他好文 时间:
2021-05-24 12:43:30
阅读次数:
0
hash 和 history的区别 hash 有#,history 没有,Hash式基于锚点,History 模式 基于H5的History API hash 的#部分内容不会传给服务端, history 的所有内容都会给服务端,应用在部署的时候需要注意html的访问,因为无论访问什么/a,/b,/ ...
分类:
其他好文 时间:
2021-05-24 12:23:52
阅读次数:
0
开关机 poweroff # 关机 reboot # 重启 网络相关 ip address # 查询IP地址 nmtui # 图形化管理网络 route # 查看路由表 systemctl restart network # 重启网络服务 ss -ntlp # 查看系统中tcp端口开启的情况 ss ...
分类:
系统相关 时间:
2021-05-24 12:07:41
阅读次数:
0
frameworks/base/core/java/android/os/ConditionVariable.java 1 /* 2 * Copyright (C) 2006 The Android Open Source Project 3 * 4 * Licensed under the Apa ...
分类:
移动开发 时间:
2021-05-24 10:45:44
阅读次数:
0