题目链接:用最少数量的箭引爆气球 题目描述: 题解: class Solution { public: static bool cmp(vector<int> &a, vector<int> &b) //按右边界排序 { return a[1] < b[1]; } int findMinArrowS ...
分类:
其他好文 时间:
2021-06-28 20:44:14
阅读次数:
0
导入一个项目的时候,报了Unable to load class 'javax.xml.bind.JAXBException'这个错。 解决: 将jdk换成jdk1.8就可以了。 原来的版本是android studio 4.2.1自带的jdk11的。 ...
分类:
编程语言 时间:
2021-06-28 20:39:12
阅读次数:
0
点击选项卡时,点击事件如下: wx.navigateTo({ url: '../device/device' }) 微信小程序报错:navigateTo:fail can not navigateTo a tabbar page,解决方法如下: wx.switchTab({ url: '../dev ...
分类:
微信 时间:
2021-06-28 20:38:23
阅读次数:
0
“资源添加到Web应用程序[]的缓存中,因为在清除过期缓存条目后可用空间仍不足 - 请考虑增加缓存的最大空间” 解决办法: 在 /conf/context.xml 的 前添加以下内容: <Resources cachingAllowed="true" cacheMaxSize="100000" /> ...
分类:
其他好文 时间:
2021-06-28 20:36:55
阅读次数:
0
一、简介 二、源代码 frameRate = get(trafficObj,'FrameRate'); % video = read(trafficObj); % implay(video, frameRate); darkCarValue = 50; darkCar = rgb2gray(read ...
分类:
其他好文 时间:
2021-06-28 20:32:07
阅读次数:
0
##Spring Security注意事项 权限优先级: 在SecurityConfig中configure(HttpSecurity http)方法中,如下代码 http.authorizeRequests() .antMatchers("/admin/**").hasRole("admin") ...
分类:
编程语言 时间:
2021-06-28 20:23:02
阅读次数:
0
解决python 安装 第三方包时报OSError: mysql_config not found的错误 Ubuntu sudo apt-get install libmysqlclient-dev centos7 yum install mysql-devel gcc gcc-devel pyth ...
分类:
数据库 时间:
2021-06-28 20:20:31
阅读次数:
0
一、简介 基于matlab 仿真圆孔的菲涅尔衍射 二、源代码 %圆孔衍射 菲涅尔 clear lamda=633*10^(-6); k=2*pi/lamda;%?¨?? p=1; z=100; fu=sqrt(-1); d=0.1; [X,Y]=meshgrid(-p:0.005:p,-p:0.00 ...
分类:
其他好文 时间:
2021-06-28 20:16:55
阅读次数:
0
https://www.jianshu.com/p/3e0b213ab03d。 注意:不要用CTRL+v linux不支持,这样当你用ctrl+v粘贴地址,运行时他会出现 fatal: protocol 'https' is not supported。 如果你仓库没有没有文件会报错:fatal: ...
分类:
其他好文 时间:
2021-06-28 20:13:30
阅读次数:
0
fork 是一个系统调用,流程的最后会在 sys_call_table 中找到相应的系统调用 sys_fork。 SYSCALL_DEFINE0(fork) { ...... return _do_fork(SIGCHLD, 0, 0, NULL, NULL, 0); } long _do_fork ...
分类:
系统相关 时间:
2021-06-28 20:00:09
阅读次数:
0