<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[seagullLol的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/seagullLol</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; seagullLol]]></copyright><item><title><![CDATA[杭电OJ 2102]]></title><link>https://blog.csdn.net/seagullLol/article/details/137060761</link><guid>https://blog.csdn.net/seagullLol/article/details/137060761</guid><author>seagullLol</author><pubDate>Tue, 26 Mar 2024 22:59:20 +0800</pubDate><description><![CDATA[杭电OJ 2102 A计划]]></description><category></category></item><item><title><![CDATA[流水车间调度问题]]></title><link>https://blog.csdn.net/seagullLol/article/details/107056348</link><guid>https://blog.csdn.net/seagullLol/article/details/107056348</guid><author>seagullLol</author><pubDate>Sun, 16 Aug 2020 22:12:51 +0800</pubDate><description><![CDATA[在[1]文中可以查阅到十六种车间调度问题模型，本文的讨论对象为多资源调度模型。该模型一般被描述为，在车间内包含M种不同的作业，N台不同的机器，每个作业有P种不同的零件需要安装。



[1]潘全科.车间调度问题研究[J].聊城大学学报(自然科学版),2004.03,17(1):10.
...]]></description><category></category></item><item><title><![CDATA[sql limit用法]]></title><link>https://blog.csdn.net/seagullLol/article/details/108032692</link><guid>https://blog.csdn.net/seagullLol/article/details/108032692</guid><author>seagullLol</author><pubDate>Sun, 16 Aug 2020 17:24:05 +0800</pubDate><description><![CDATA[1.基本用法


# 查询表中第i+1行到第j行数据  
# 当i=0时，也可以写为limit j，表示查询1到j行数据
select *
from tableName 
limit i, j

2.实例

题来源于牛客网sql实战。

题目描述

查找入职员工时间排名倒数第三的员工所有信息，为了减轻入门难度，目前所有的数据里员工入职的日期都不是同一天
CREATE TABLE `employees` (
`emp_no` int(11) NOT NULL,
`birth_date` date NOT NU]]></description><category></category></item><item><title><![CDATA[C++ Vector基础用法]]></title><link>https://blog.csdn.net/seagullLol/article/details/107893576</link><guid>https://blog.csdn.net/seagullLol/article/details/107893576</guid><author>seagullLol</author><pubDate>Sun, 09 Aug 2020 17:50:31 +0800</pubDate><description><![CDATA[1. 初始化以及定义

  Vector类型隶属于c++的标准模板库，作用相当于malloc的数组。区别应该在于malloc的数组存储在内存栈上，而Vector对象存储在内存的堆中。


#include &lt;vector&gt;

using namespace std;

int main()
{
    /* vector对象的定义 */

    // 1. 定义空的, 类型为TypeName 的vector类型
    vector&lt;TypeName&gt; vector;
    ..]]></description><category></category></item></channel></rss>