#include<cstdio> #include<queue> #include<vector> using namespace std; const int N = 1010; queue<int> q; int w[N]; int result[N]; int main(){ int np,n ...
分类:
其他好文 时间:
2020-09-12 21:48:03
阅读次数:
38
题目描述链接:https://leetcode-cn.com/problems/evaluate-reverse-polish-notation/ 解题思路:栈的典型应用,并注意减法和除法不满足交换率。 LeetCode C++求解代码: class Solution { public: stack ...
分类:
其他好文 时间:
2020-09-11 14:15:45
阅读次数:
42
POJ2387 Til the Cows Come Home 题目链接 题意:在一个无向图中,求点 n 到点 1 的最短路径。 用邻接表 dijkstra 即可不需要考虑重边。 #include <iostream> #include <cstdio> #include <algorithm> #i ...
分类:
其他好文 时间:
2020-09-11 14:13:48
阅读次数:
39
进行一次快排即可 class Solution { public: vector<int> exchange(vector<int>& nums) { int le = 0; int ri = nums.size() - 1; while(le<ri){ while (le < ri&&nums[r ...
分类:
编程语言 时间:
2020-09-10 22:36:24
阅读次数:
38
1. 两数之和 题目分析 判断target - nums[i]是否在哈希表中,如果在,就加入res中;将nums[i]加入哈希表中,返回下标。 class Solution { public: vector<int> twoSum(vector<int>& nums, int target) { v ...
分类:
其他好文 时间:
2020-09-09 18:49:50
阅读次数:
33
1. 登录git (https://gitee.com/) 2. 登录成功后进入个人仓库 2.1 点击仓库的+号,创建私有仓库或公开仓库 我创建的是公开的仓库 创建完成 3. 发布项目 3.1 创建 .gitignore 文件 # Created by .ignore support plugin ...
分类:
编程语言 时间:
2020-09-08 21:03:53
阅读次数:
69
之前已经初步做出了网站中的功能,目前就要进入美化阶段,这里就不得不说两个工具 bootstrap和frontawesome 今天先开始bootstrap: Bootstrap是目前最流行的前端开发框架,由Twitter的两位前 员工Mark Otto和Jacob Thornton在2010年8月份创 ...
分类:
编程语言 时间:
2020-09-04 17:13:45
阅读次数:
51
题目描述链接:https://leetcode-cn.com/problems/letter-combinations-of-a-phone-number/ 基本思路:dfs搜索即可。 LeetCode C++求解代码: class Solution { public: vector<string> ...
分类:
其他好文 时间:
2020-09-04 17:08:51
阅读次数:
65
第四章最后一题 明天学习第五章 vector模板 和list一样 但是方法名称不一样 定义和list一样,尤其需要指定数据类型 Vector<Integer> v=new Vector<Integer>(10); v.addElement(a); 排序 可以直接调用方法 Collections.so ...
分类:
其他好文 时间:
2020-09-03 16:54:17
阅读次数:
38
最近使用react官方脚手架create-react-app建立项目的时候发现在ie浏览器打开时显示空白,在主流的chrome、fireFox等浏览器显示是正常的。打开控制台显示如下 既然提示了语法错误,那么猜想应该是兼容性的问题,看了下浏览器的版本号是ie11。首先我翻了下create-react ...
分类:
移动开发 时间:
2020-09-02 16:45:27
阅读次数:
78