码迷,mamicode.com
首页 >  
搜索关键字:int    ( 143001个结果
线性动态规划
处理输入,bag[i]是以i为右界的左界集合 for(int i=0;i<n;i++){ int x,y; cin>>x>>y; bag[y].pushback(x); } dp[i]是第i个bag的时候不重复的最大草数,为每一个bag[i]的x判断找出最大值 dp[i]=max(dp[i],dp[ ...
分类:其他好文   时间:2021-07-05 16:51:04    阅读次数:0
C# 通过委托,事件窗口传值
Form2 namespace WindowsFormsApp1 { //定义委托 public delegate void Sum(int x, int y); public partial class Form2 : Form { //定义事件 public event Sum sum; pub ...
分类:Windows程序   时间:2021-07-05 16:39:05    阅读次数:0
[2021 spring] CS61A Lab 6: Nonlocal, Mutability, Iterators and Generators
[2021 spring] CS61A Lab 6: Nonlocal, Mutability, Iterators and Generators ...
分类:编程语言   时间:2021-07-02 16:21:32    阅读次数:0
winform简易计算器
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi ...
分类:Windows程序   时间:2021-07-02 16:20:16    阅读次数:0
java 多线程基础学习,练习案例
一、多线程方法一(继承Thread类) package Demo01;//继承线程类Threadpublic class MyThread extends Thread{ //重写 run()方法 @Override public void run() { for (int i = 0; i < 2 ...
分类:编程语言   时间:2021-07-02 16:18:56    阅读次数:0
P3512 [POI2010]PIL-Pilots 单调队列
P3512 [POI2010]PIL-Pilots 单调队列 链接 限制与最大值最小值有关,所以我们考虑维护最大值最小值。 可以用双指针,但同时需要维护最大值最小值出现次数,但我们并维护不了任意区间内的最大值最小值。 考虑单调队列。 因为单调队列只能维护一个最值,所以我们开两个队列,一个维护最大值, ...
分类:其他好文   时间:2021-07-02 16:07:12    阅读次数:0
Manjaro安装fcitx5-rime与美化
0. 参考 Manjaro安装fcitx5-rime default.custom.yaml fcitx5的简约风格皮肤 Rime (简体中文) 1. 安装rime sudo pacman -S fcitx5 fcitx5-qt fcitx5-gtk fcitx5-configtool fcitx5 ...
分类:编程语言   时间:2021-07-02 15:50:53    阅读次数:0
LeetCode.94二叉树的中序遍历
方法一:递归 遍历即从跟开始,递归的先访问左节点再访问右节点。中序遍历在访问完左节点后访问该节点的值。 1 /** 2 * Definition for a binary tree node. 3 * public class TreeNode { 4 * int val; 5 * TreeNode ...
分类:其他好文   时间:2021-07-02 15:49:51    阅读次数:0
spring学习
//把创建的对象都放到applicationContext容器中,要用时,在通过id一个一个取出来 壹、第一个spring项目 主配置文件 <beans> <bean id="a" class="com.dh.service.impl.SomeServiceImpl"/></beans> //在sp ...
分类:编程语言   时间:2021-07-02 15:49:28    阅读次数:0
第四天
##无重复字符的最长子串 给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。 ###示例 1: 输入: s = "abcabcbb" 输出: 3 解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。 class Solution { public int lengthOf ...
分类:其他好文   时间:2021-07-02 15:47:36    阅读次数:0
143001条   上一页 1 ... 4 5 6 7 8 ... 14301 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!