很多程序员都喜欢使用google浏览器作为开发工具,但本人更喜欢360极速,虽然对于360不太感冒,但孔子曰不因言废人,不因人废言。对于好东西还是要开放一点的。这款浏览器不仅可以支持google的brink内核(极速模式),同时还支持IE的Trident内核(兼容模式),而且关闭最后一个标签页时不会 ...
分类:
其他好文 时间:
2021-07-01 17:22:34
阅读次数:
0
附官网教程一篇:OpenCV: How to build applications with OpenCV inside the "Microsoft Visual Studio" 1.设置好环境变量后,代码提示:未找到<opencv2> 解决方案:将上述地址修改为如下地址 $(OPENCV_DIR ...
分类:
其他好文 时间:
2021-07-01 17:17:25
阅读次数:
0
1.栈(Stack) 栈的特点是先进后出,相当于你往桌子上放书本,先放上去的在下边。栈的常用方法:push,让一个元素放到栈顶 pop:移除栈顶元素,并且返回被移除的元素。 peek:返回栈顶元素。 length:栈的长度 2.队列(queue) 队列的特点和栈有点相同,不过队列是先进先出,和排队买 ...
分类:
其他好文 时间:
2021-07-01 17:06:48
阅读次数:
0
给定一个只包括 '(',')','{','}','[',']' 的字符串 s ,判断字符串是否有效。 dic = {'{': '}', '[': ']', '(': ')'} stack = [] for c in s: if c in dic: stack.append(c) elif not s ...
分类:
其他好文 时间:
2021-07-01 16:41:29
阅读次数:
0
1.先查看用的哪块网卡上的网,记录下Idx编号,我的是14 C:\Windows\system32>netsh i i show in Idx Met MTU 状态 名称 1 75 4294967295 connected Loopback Pseudo-Interface 1 10 1 65535 ...
Description:Here will use pictures and text to report traffic statistics. Total reading volume on all platforms:85653 Total playback volume on all pla ...
分类:
其他好文 时间:
2021-06-30 18:08:31
阅读次数:
0
pom.xml导入pinyin4j的依赖 <dependency> <groupId>com.belerweb</groupId> <artifactId>pinyin4j</artifactId> <version>2.5.1</version> </dependency> 汉字转拼音工具类 pa ...
分类:
编程语言 时间:
2021-06-29 15:57:55
阅读次数:
0
一、简介 基于matlab国际象棋 二、源代码 function mychess() %clear %close all global Grid_n Grid_w Grid_h Board BoardWhite chess_x chess_y Whowin Grid_n=8; Grid_w=60; ...
分类:
其他好文 时间:
2021-06-28 20:56:37
阅读次数:
0
定位 相对定位 相对定位 : position: relative; 相对于原来的位置,进行指定的偏移,相对定位的话,他仍然在文档流中 top : 10px; 距离上方移动10px (向下) left bottom right :-20px; 距离右方移动-20px (向右) html : <!DO ...
分类:
Web程序 时间:
2021-06-28 19:21:53
阅读次数:
0
<style> /* 定义名称为zhuan的动画 */ @keyframes zhuan { 0% { transform: translate(0, 0); } /* 水平移动 */ 30% { transform: translate(600px, 0); } /* 放大x,y 2倍*/ 50% ...
分类:
Web程序 时间:
2021-06-28 18:13:40
阅读次数:
0