上一页 1 ··· 4 5 6 7 8 9 下一页

[leetcode]Leetcode中sort排序遇到的一些问题

摘要: 转载自:https://www.cnblogs.com/flightless/p/10745318.html class Solution { public: static bool cmp(int a, int b){ return a>b; } int main(vector<int>& vec 阅读全文
posted @ 2019-08-27 08:47 刘好念 阅读(1) 评论(0) 推荐(0) 编辑

[LeetCode]1171. Remove Zero Sum Consecutive Nodes from Linked List

摘要: 一、题意 Given the head of a linked list, we repeatedly delete consecutive sequences of nodes that sum to 0 until there are no such sequences. After doing 阅读全文
posted @ 2019-08-26 21:45 刘好念 阅读(1) 评论(0) 推荐(0) 编辑

[PAT]1119 Pre- and Post-order Traversals (30 分)(样例1未过,运行时错误原因)

摘要: 一、题目 Suppose that all the keys in a binary tree are distinct positive integers. A unique binary tree can be determined by a given pair of postorder an 阅读全文
posted @ 2019-08-15 10:54 刘好念 阅读(2) 评论(0) 推荐(0) 编辑

[PAT]1099 Build A Binary Search Tree (30 分)(只得22分的原因)

摘要: 一、题目: A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties: The left subtree of a node contains only 阅读全文
posted @ 2019-08-14 20:33 刘好念 阅读(1) 评论(0) 推荐(0) 编辑

判断一个数是不是质数(素数),3种方式介绍

摘要: 本文参考博文判断一个数是不是质数(素数),3种方式介绍,原文章解释的已经很详细,本问增加部分博主自己的理解。 一、概念介绍 质数:质数是指在大于1的自然数中,除了1和它本身以外不再有其他因数的自然数。特别的0,1不是质数。 二、方法介绍 1.最直接的方法 bool isPrime(int n){ i 阅读全文
posted @ 2019-08-14 16:51 刘好念 阅读(1238) 评论(0) 推荐(0) 编辑

[leetcode]32. Longest Valid Parentheses

摘要: 题目描述 Given a string containing just the characters ‘(’ and ‘)’, find the length of the longest valid (well-formed) parentheses substring.样例 Example 1: 阅读全文
posted @ 2019-07-29 19:19 刘好念 阅读(2) 评论(0) 推荐(0) 编辑

[STL]使用vector::erase对vector遍历删除

摘要: 在对vector中的元素进行遍历删除时遇到了一点问题,查博客发现博客上并不靠谱。在此记录,共同进步。 vector循环遍历正确代码: for(vector<int>::iterator it=vec.begin(); it!=vec.end();){ if(*it == 3){ vec.erase( 阅读全文
posted @ 2019-07-29 15:45 刘好念 阅读(24) 评论(0) 推荐(0) 编辑

[Linux]FloppyLinux--中国石油大学(华东)计算机操作系统课程设计作业教程

摘要: 零、背景 本教程主要针对中国石油大学(华东)计算机操作系统课程设计中的Floppylinux作业。 当时老师给的教程让人难受。也可能是我太渣了,自己走了不少弯路。希望你做这个作业时不要再像我一样难受。 以下内容参考李永老师给的《Floppylinux实现》文档。并增加一些自己的理解和注释。希望对你有 阅读全文
posted @ 2019-07-17 17:26 刘好念 阅读(7) 评论(0) 推荐(0) 编辑

[leetcode]10. Regular Expression Matching

摘要: 题目 给定一个字符串 (s) 和一个字符模式 (p)。实现支持 '.' 和 '*' 的正则表达式匹配。 '.' 匹配任意单个字符。 '*' 匹配零个或多个前面的元素。 匹配应该覆盖整个字符串 (s) ,而不是部分字符串。 说明 s 可能为空,且只包含从 a-z 的小写字母。p 可能为空,且只包含从  阅读全文
posted @ 2018-12-17 20:29 刘好念 阅读(3) 评论(0) 推荐(0) 编辑

[PAT]1148 Werewolf - Simple Version(20 分)

摘要: 这是2018年9月8日PAT考试甲级第一题,当时看完题目什么思路也没有,就直接跳过做第二题(因为我看第二题还好多人做出来了)。最后终于有了思路,但是读题题意理解错了,原文是"at least one but not all the werewolves were lying"即只有一个狼人说谎,自己 阅读全文
posted @ 2018-09-11 15:38 刘好念 阅读(7) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 下一页