const 变量能被其他文件 extern 引用吗?为什么? 先来看一段代码: // 来源:公众号编程珠玑 // main.cc #include<stdio.h> // 引用外部定义的const_int变量 extern const int const_int; int main() { prin ...
分类:
其他好文 时间:
2021-07-13 17:45:44
阅读次数:
0
package com.leetcode.leetcode.licm; import org.apache.logging.log4j.util.Strings; /** * @description: /** * * 151. 翻转字符串里的单词 * * 给你一个字符串 s ,逐个翻转字符串中的所 ...
分类:
其他好文 时间:
2021-07-13 17:43:55
阅读次数:
0
C++ STL中迭代器(iterators)用于遍历对象集合的元素。这些集合可能是容器,也可能是容器的子集。 ...
分类:
编程语言 时间:
2021-07-12 18:25:02
阅读次数:
0
本篇解题记录题源来自 AcWing 的每日一题 · 暑假 补题链接:Here Week 1 星期四 AcWing 3761. 唯一最小数 利用 map 存出现过数的下标和次数即可 vector<int>a; int n; int main() { cin.tie(nullptr)->sync_wit ...
一、路由Routers 在 Rest Framework 中提供了两个 router , 可以帮助我们快速的实现路的自动生成。 必须是继承 ModelViewSet 的视图类才能自动生成路由 SimpleRouter 使用方法: urls.py # 第一步:导入routers模块 from rest ...
分类:
其他好文 时间:
2021-07-12 17:44:56
阅读次数:
0
一般情况下,创建时间、修改时间都是用datetime类型; datetime类型在没有默认值的情况下是不会自动赋值的; 在开发阶段,不想传这两个值,但又想不为null,所以就需要用到CURRENT_TIMESTAMP这个参数。 创建时间: 一般是在创建数据时才会赋值,使用SQL的话,就需要在字段上添 ...
分类:
数据库 时间:
2021-07-12 17:43:55
阅读次数:
0
哈希表是可以减少时间复杂度的。 因为哈希表物理结构是数组,在没有冲突的情况下,查找时间是O(1),建表时间可能是O(n)。 为什么把普通数组换成hash表就能减少复杂的呢 例如 //数组形式 for(int i=0;i<n;++i) for(int j=0; j<n;++j) printf ( nu ...
分类:
其他好文 时间:
2021-07-08 17:45:36
阅读次数:
0
public int calculate(String s) { int len = s.length(); Stack<Integer> s1 = new Stack<>(); // 操作数栈 int num = 0; char preSign = '+'; // 为了方便计算,1+1+1 > + ...
分类:
其他好文 时间:
2021-07-07 17:55:15
阅读次数:
0
1.pom.xml 一般使用idea新建一个SpringBoot web项目时,一般都会自动引入此依赖,如果没有,请手动引入。 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-start ...
分类:
编程语言 时间:
2021-07-07 17:52:38
阅读次数:
0
二维数组的遍历使用foreach public int numWays(int n, int[][] relation, int k) { ways = 0; this.n = n; this.k = k; edges = new ArrayList<>(); //把关系处理成list,类似于图的每 ...
分类:
编程语言 时间:
2021-07-07 17:49:25
阅读次数:
0