Leetcode 101 数据结构定义: /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x ...
分类:
其他好文 时间:
2020-11-07 16:16:53
阅读次数:
21
抽奖软件a、通过键盘录入抽奖人姓名,多个抽奖人用“|”号分割。输入完成后,控制台打印抽奖人姓名,并提示YESORNO来表示确认。一旦确认,自动为抽奖人分配ID,开始抽奖.(如果出现重名,则以ID为准)b、奖品存放在某个集合中。c、1等奖1个2等奖3个3等奖4个。d、每次抽奖均打印姓名,然后键盘输入next开始第二次抽奖。如果奖品已经抽完,则公布中奖汇总。不再提示next1.初始化抽奖人的姓名2.初
分类:
其他好文 时间:
2020-11-07 15:34:56
阅读次数:
21
MySQL下载与安装(Windows) 下载链接 MySQL官网下载 安装 运行安装包,这里选择“Custom”安装 自定义选择产品,一般只选择图示的两个就够了 点“Execute” 下载完后“Next” Next Next Next,这里端口号可以自己调整,一般还是使用默认的3306 设置root ...
分类:
数据库 时间:
2020-11-06 02:45:26
阅读次数:
75
1.变量名:比如y0,y1,time,next,max,min什么的,等有可能出错的变量名; 2.注意多Ctrl+s; 3.注意不要超空间,大致算一下; 4.注意局部变量和全局变量重复引起的玄学错误; 5.scanf 输出LL类型的值一定要是lld要不然会有玄学错误; 6.少压行 7.审题 8.文件 ...
分类:
其他好文 时间:
2020-11-06 02:10:56
阅读次数:
20
#include <iostream> #include <vector> #include <stack> #include <queue> template <class T> typedef struct node { node* left; node* right; T val; std:: ...
分类:
其他好文 时间:
2020-11-06 01:25:12
阅读次数:
16
题解:递归求左右子树的最大深度。 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { ...
分类:
其他好文 时间:
2020-11-06 01:10:43
阅读次数:
21
最短路 SPFA #include <bits/stdc++.h> using namespace std; #define N 10001 #define M 500001 struct node{ int to,w,next; }edge[M]; int cut=0; int head[N]; ...
分类:
编程语言 时间:
2020-11-04 18:47:58
阅读次数:
18
一、中间件简介 ? express本身功能极简,其他功能主要靠中间件来实现。中间件是封装了一个request对象和response对象的函数。 中间件的使用放在 app.use( ) 中。 二、静态资源服务中间件 app.use(express.static("./public")); 三、错误路由 ...
分类:
其他好文 时间:
2020-11-04 18:22:03
阅读次数:
24
###符号说明 $y_{0}=\left ( a_{1},a_{2},...,a_ \right ) 即y_{0}是a_{1},a_{2},...,a_$的最大公因数 \(d|a_{i}(d整除a_{i},a_{i}是d的倍数)\) ###定理 \(设a_{i}\in Z ,A=\left \{ y ...
分类:
其他好文 时间:
2020-11-04 17:50:48
阅读次数:
12
class Solution { public: int peakIndexInMountainArray(vector<int>& arr) { int n = arr.size(); if(n==0) { return -1; } int left = 0; int right = n-1; w ...
分类:
编程语言 时间:
2020-11-04 17:43:48
阅读次数:
26