1. 题目描述 You are given an n x n 2D matrix representing an image, rotate the image by 90 degrees (clockwise). You have to rotate the image in-place, whi ...
分类:
编程语言 时间:
2021-02-18 13:08:31
阅读次数:
0
创建一个win32控制台项目, 1.1 创建头文件funSub.h #pragma once void sub(int a, int b); 1.2 创建funSub.cpp #include <iostream> void sub(int a, int b) { std::cout << (a - ...
分类:
其他好文 时间:
2021-02-18 12:58:22
阅读次数:
0
1 案例背景 2 任务说明 3 准备工作 4 数据集描述 5 时序分析流程 ...
分类:
其他好文 时间:
2021-02-18 12:54:17
阅读次数:
0
先来看一个需求:下图div用v-for做了列表循环,现在想要span也一起循环,应该怎么做? 有3种方法可以实现 ①:直接用v-for对span也循环一次(该方法虽然可以使用,但不要用这种方式,因为以后你会哭) ②:在div和span外面包裹一个div,给这个div加循环(该方法会额外增加一个多余的 ...
分类:
其他好文 时间:
2021-02-17 15:05:53
阅读次数:
0
解决idea创建Maven项目时 No archetype found in remote catalog. Defaulting to internal catalog 下载archetype-catalog.xml下载地址:https://repo1.maven.org/maven2/arche ...
分类:
其他好文 时间:
2021-02-17 14:41:35
阅读次数:
0
使用os.OpenFile()打开文件,flag选择 O_WRONLY|O_TRUNC 即可 具体代码: import ( "fmt" "os" "bufio" ) func main(){ // 打开一个存在的文件,将原来的内容覆盖掉 path := "./hello.txt" // O_WRON ...
分类:
其他好文 时间:
2021-02-17 14:38:25
阅读次数:
0
ReentrantLock源码 父子类关系:NonfairSync->Sync->AQS AQS源码 核心是volatile int state以及等待队列。 state的具体含义交给子类来定义。 ReentrantLock中state代表加解锁。 CountDownLatch中state代表需要c ...
分类:
编程语言 时间:
2021-02-17 14:21:25
阅读次数:
0
标识符 注意事项 所有的标识符都应该以字母(A-Z/a-z),美元符($),下划线(_)开始 首字符之后可以是字母(A-Z/a-z),美元符($),下划线(_)或数字的任何字符 不能使用关键字作为变量名或方法名 标识符是大小写敏感的 举例 合法标识符:age、$salary、_value、__1_v ...
分类:
其他好文 时间:
2021-02-17 14:08:19
阅读次数:
0
一、原理: ①、先做一个实心的三角: <div class="box"> <em></em> <span></span> </div> .box em { position: absolute; top: 30px; left: 20px; width: 0; height: 0; border: ...
分类:
Web程序 时间:
2021-02-17 14:07:02
阅读次数:
0
如下图,已知:AB=AC,∠A=∠DCA=20°,∠ABE=30°。求:∠CDE。 解法一:(walls老师提供) 在AB边上取点F使得FC=BC,连接FC、FE。如下图所示: 由AB=AC以及∠A=20°,知∠ABC=∠ACB=80°。 由FC=BC知,∠BFC=∠FBC=80°,∠FCB=180 ...
分类:
其他好文 时间:
2021-02-16 12:38:38
阅读次数:
0