P1126 机器人搬重物【普及+/提高】题解 (最近给新来的同学们讲了讲广搜,正好巩固一下,所以最近广搜的题解比较多) 这道题是广搜里面细节很多的一道。 首先,我们要预处理一下输入数据。输入数据只表现了哪些点有障碍物,由于 机器人的形状是一个直径1.6米的球。 所以障碍物上下左右相邻的格子都是无法到 ...
分类:
其他好文 时间:
2020-07-17 14:05:31
阅读次数:
70
public static JSONObject getToken(String appId,String appSecret){ String url="https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&app ...
分类:
微信 时间:
2020-07-17 14:05:12
阅读次数:
111
转:菜鸟教程,JQuery选择器 1.基本选择器 $("#id")//ID选择器 $("div")//元素选择器 $(".classname")//类选择器 $(".classname,.classname1,#id1")//组合选择器 2.层次选择器 $("#id>.classname ")//子 ...
分类:
Web程序 时间:
2020-07-17 14:04:49
阅读次数:
87
element表格鼠标悬浮上带有点击事件的变红 如图所示 只需要在el-table标签上加一个:row-class-name <el-table stripe style="width: 100%" :data="tableData" v-loading="isLoading" element-lo ...
分类:
其他好文 时间:
2020-07-17 14:04:31
阅读次数:
94
自定义控件是需要实现input事件 并发送input事件传递当前值 使用该组件是无法把输入的数据绑定到data中的变量中 <template> <div> <input type="text" :value="value" @input="input"> </div> </template> <sc ...
分类:
其他好文 时间:
2020-07-17 14:04:14
阅读次数:
90
/* Name: Copyright: Author: Mudrobot Date: <DATETIME> Description: */ #include<bits/stdc++.h> #define gc() getchar()//caution!!! #define LL long long ...
分类:
其他好文 时间:
2020-07-17 14:04:00
阅读次数:
107
Git使用(对廖雪峰老师Git教程的总结,同时推荐一个博客的教程,诙谐有趣) Git配置 全局配置 主目录下的.gitconfig # 设置名称信息 git config --global user.name <"Name"> # 设置邮箱信息 git config --global user.em ...
分类:
其他好文 时间:
2020-07-17 14:03:40
阅读次数:
75
1 函数模板 #include <iostream> using namespace std; template <typename T> T square(T a) { return a * a; } int main(void) { cout << square<int>(3) << endl; ...
分类:
编程语言 时间:
2020-07-17 14:03:22
阅读次数:
65
题目: 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。 你可以假设数组是非空的,并且给定的数组总是存在多数元素。 示例 1: 输入: [1, 2, 3, 2, 2, 2, 5, 4, 2] 输出: 2 限制: 1 <= 数组长度 <= 50000 解题思路: 由于要寻找的是出现次数超 ...
分类:
编程语言 时间:
2020-07-17 14:03:08
阅读次数:
55
\(\color{blue} \text {【题目描述】}\) 一棵树,点编号1 . . . n,Q次询问编号[l, r]的点的导出子图中有几个连通块。 \(\color{blue}\text{【输入】}\) 第一行n, Q。 接下来n ? 1行每行两个数表示一条树边(u, v)。 接下来Q行每行两 ...
分类:
其他好文 时间:
2020-07-17 14:02:42
阅读次数:
81
一、Reading After my graduation, I went to Beijing to further my studies. I lived there for three years. At first, I was happy, but later, I was frustra ...
分类:
其他好文 时间:
2020-07-17 14:02:28
阅读次数:
91
这是swiper专门为了vue开发出的插件,参数基本一样 https://www.swiper.com.cn/ vue中使用 npm install vue-awesome-swiper 组件中引入 import { Swiper, SwiperSlide } from 'vue-awesome-s ...
分类:
其他好文 时间:
2020-07-17 14:02:11
阅读次数:
125
一 创建应用程序 切换到learning_log目录下激活虚拟环境 执行 python manage.py startapp learning_logs 执行dir查看新建了learning_logs文件夹,内部文件包含 其中最重要的是models.py admin.py views.py mode ...
分类:
其他好文 时间:
2020-07-17 14:01:50
阅读次数:
59
在使用数据泵进行模式级别导入导出时,导出成功后进行数据导入。出现报错: 可以看到存储过程对象F_NUM编译报错。 那么首先查看无效对象。 SYS@proe>col object_name for a30; SYS@proe>select owner,object_name,object_type,s... ...
分类:
其他好文 时间:
2020-07-17 14:01:30
阅读次数:
279
Random方法: 功能:产生一个随机数; 第一步:导包 import java.unil.Random; 第二步:创建 例 Random s=new Random(); 第三步:使用 例 int r=s.nextInt(); 注意事项: int类型:产生随机数的范围有正负两种; int r=new ...
分类:
其他好文 时间:
2020-07-17 14:01:14
阅读次数:
65
继承ClassLoader并且重写findClass方法就可以自定义一个类加载器,具体什么是类加载器以及类加载器的加载过程与顺序下次再说,下面给出一个小demo 首先定义一个类,比如MyTest,并且将其编译成class文件,然后放到一个指定的文件夹下面,其中文件夹的最后几层就是它的包名,这里我将这 ...
分类:
编程语言 时间:
2020-07-17 14:00:59
阅读次数:
112
1、在组件中直接使用style,注意,div1各个属性值加双引号 const div1 = { width: "300px", margin: "30px auto", backgroundColor: "#44014C", //驼峰法 minHeight: "200px", boxSizing: ...
分类:
Web程序 时间:
2020-07-17 14:00:41
阅读次数:
74