摘要:
2020/8/15 标签(空格分隔):二零二零八月 今天主要是进行线程的学习 #线程(std::thread) 我是直接从cpp官方文档进行thread库的学习。 看std::thread的简介时候,能够知道 std::thread的 Member types id //thread id nati 阅读全文
摘要:
Length of Last Word 这道题很简单,一般来说有两种方法 第一种就是用栈的思想,从头到尾扫描,遇到字母压栈,而遇到空格就将之前空格的全部出栈。当然出栈也有前提,就是后续必须还有元素,且非空格元素才可出栈。 第二种就是从尾部进行扫描,遇到第一个字母就加一,再直接进行统计,遇到下一个空格 阅读全文
摘要:
Maximum Subarray DP问题 全称(Dynamic Programming) https://www.freecodecamp.org/news/follow these steps to solve any dynamic programming interview problem 阅读全文
摘要:
###原题目```cppGiven an array nums and a value val, remove all instances of that value in-place and return the new length. Do not allocate extra space fo 阅读全文
摘要:
###原题目```cppGiven a sorted array nums, remove the duplicates in-place such that each element appear only once and return the new length. Do not alloca 阅读全文