摘要:
题目5:无重复字符的最长子串 给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度。 示例 1: 输入: "abcabcbb" 输出: 3 解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。 示例 2: 输入: "bbbbb" 输出: 1 解释: 因为无重复字符的最长子串是 阅读全文
摘要:
首先谱聚类是非常流行的一种聚类,比一般的k_means效果要好,不仅如此,谱聚类里包含很多很有用的知识值得学习,比如拉普拉斯图和一些很好的思想,下面简单记录一下对于这篇论文的笔记。 对于这篇论文基础的一些讲解,包括相似图的定义,度矩阵的定义,还有不同类型的相似图等都在这篇博客里有很好的体现,所以在这 阅读全文
摘要:
note of paper about hash function 阅读全文
摘要:
Java中String、StringBuffer、StringBuilder的比较与源代码分析 众所周知String、StringBuffer、StringBuilder是java中常用的字符串类,下面我将从三个方面对他们三兄弟进行对比。 一、三者的数据组织及其功能实现 大家爱把String、Str 阅读全文
摘要:
Given a string, you are supposed to output the length of the longest symmetric sub-string. For example, given Is PAT&TAP symmetric?, the longest symme 阅读全文
摘要:
Zhejiang University has 40000 students and provides 2500 courses. Now given the student name lists of all the courses, you are supposed to output the 阅读全文
摘要:
pat 算法 模拟题 阅读全文
摘要:
大学生电影节在北大举办! 这天,在北大各地放了多部电影,给定每部电影的放映时间区间,区间重叠的电影不可能同时看(端点可以重合),问李雷最多可以看多少部电影。 阅读全文
摘要:
1032. Sharing (25) 时间限制 100 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue 时间限制 100 ms 时间限制 100 ms 内存限制 65536 kB 内存限制 65536 kB 代码长度限制 1600 阅读全文
摘要:
Excel can sort records according to any column. Now you are supposed to imitate this function. Input Each input file contains one test case. For each 阅读全文