主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
酷酷兔
这个人很懒,什么都没有写...
关注
发消息
文章
99
题解
0
发帖
0
笔记
0
Ta的粉丝
120
关注数
0
粉丝数
120
获赞数
8
阅读数
96419
55. 跳跃游戏
public class Solution { public boolean canJump(int[] nums) { int n = nums.length; int rightmost = 0; for (int i =...
备考笔记
2024年9月7日 15:12
回复 0
|
赞 0
|
浏览 1.1k
279. 完全平方数
class Solution { public: int numSquares(int n) { vector<int> f(n + 1); for (int i = 1; i <= n; i++) { ...
备考笔记
2024年9月7日 14:58
回复 0
|
赞 0
|
浏览 1.6k
盛最多水的容器 11
class Solution { public: int maxArea(vector<int>& height) { int l = 0, r = height.size()-1; int ans = 0; ...
备考笔记
2024年9月7日 10:06
回复 0
|
赞 0
|
浏览 957
乘积最大子数组 152
class Solution { public: int maxProduct(vector<int>& nums) { //f1,f2:以第i个数结尾的乘积最大,最小的子数组乘积。 //最小的对应负数的情况,负负得正。 ...
备考笔记
2024年9月6日 17:02
回复 0
|
赞 0
|
浏览 1.0k
最长连续序列 128
class Solution { public: int longestConsecutive(vector<int>& nums) { unordered_set<int>se; for(int x: num...
备考笔记
2024年9月6日 16:07
回复 0
|
赞 0
|
浏览 937
最佳买卖股票时机含冷冻期 309
class Solution { public: int maxProfit(vector<int>& prices) { if(prices.size()==0)return 0; //f[i]到第i天为止的最大收益。 ...
备考笔记
2024年9月6日 15:41
回复 0
|
赞 0
|
浏览 952
正则表达式匹配 10
//f[i][j]表示s的前i个能否被p的前j个匹配。 //转移若s[i]==p[j]则f[i][j]=f[i-1][j-1]. 否则若p[j]=.也可以匹配,若=*则再判断p[j-1]与s[i]的关系 class Solution { public: bool isMat...
备考笔记
2024年9月6日 14:48
回复 0
|
赞 0
|
浏览 1.0k
找到字符串中所有字母异位词 438
class Solution { public: vector<int> findAnagrams(string s, string p) { int slen = s.size(), plen = p.size(); if(sl...
备考笔记
2024年9月6日 10:13
回复 0
|
赞 0
|
浏览 939
接雨水
class Solution { public: int trap(vector<int>& height) { int ans = 0; int left = 0, right = height.size() - 1; ...
备考笔记
2024年9月6日 09:21
回复 0
|
赞 0
|
浏览 1.1k
回文子串 647
class Solution { public: int countSubstrings(string s) { int n = s.size(), ans = 0; for(int i = 0; i < 2*n-1; i++){ ...
备考心情
2024年9月5日 17:26
回复 0
|
赞 0
|
浏览 899
最长有效括号 32
class Solution { public: int longestValidParentheses(string s) { int ans = 0; stack<int>stk; stk.push(-1);...
备考心情
2024年9月5日 15:03
回复 0
|
赞 0
|
浏览 992
每日温度 739
class Solution { public: vector<int> dailyTemperatures(vector<int>& temperatures) { int n = temperatures.size(); ...
备考心情
2024年9月5日 13:19
回复 0
|
赞 0
|
浏览 991
除法求值 399
class Solution { public: vector<double> calcEquation(vector<vector<string>>& equations, vector<double>& val...
备考心情
2024年9月5日 12:19
回复 0
|
赞 0
|
浏览 934
删除无效的括号 301
class Solution { public: bool check(string s){ //判断序列是否合法 int cc = 0; for(char ch : s){ if(ch=='(')cc++; ...
备考心情
2024年9月5日 11:50
回复 0
|
赞 0
|
浏览 983
二叉树的直径 543
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNo...
备考心情
2024年9月4日 21:13
回复 0
|
赞 0
|
浏览 1.1k
把二叉搜索树转换为累加树 538
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNo...
备考心情
2024年9月4日 19:45
回复 0
|
赞 0
|
浏览 1.0k
路径总和 III 437
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNo...
备考心情
2024年9月4日 19:43
回复 0
|
赞 0
|
浏览 1.0k
打家劫舍 III 337
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNo...
备考心情
2024年9月4日 19:27
回复 0
|
赞 0
|
浏览 993
约数求和
#include <iostream> using namespace std; int main() { long long int n, count = 0; cin >> n; for (long long...
备考心情
2024年9月3日 12:28
回复 0
|
赞 0
|
浏览 913
过河卒
#include<bits/stdc++.h> using namespace std; const int dir[8][2] = { {1,2},{1,-2},{2,1},{2,-1},{-1,2},{-1,-2},{-2,1},{-2,-1} }; bool d[3...
备考心情
2024年8月28日 14:54
回复 0
|
赞 0
|
浏览 981
1
2
3
...
5
本科学校:合肥工业大学
目标学校:无
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!