码迷,mamicode.com
首页 >  
搜索关键字:part solution    ( 14980个结果
坑题:最后一个单词的长度
出题人语死早,并没有叙述清楚 值得注意的是,“abc ”这个字符串是有单词存在的 所以从尾部判断的时候还要再看一下前边 class Solution { public: int lengthOfLastWord(string s) { int len = s.size(); int rear = l ...
分类:其他好文   时间:2021-01-27 13:10:10    阅读次数:0
1.25
https://www.acwing.com/solution/content/3472/ 单链表 #include<iostream> using namespace std; const int N=1e6+10; // e[N]中存value,ne[N]存下一个结点的下标 int head,e ...
分类:其他好文   时间:2021-01-26 12:24:15    阅读次数:0
go build get 问题处理
client.go:9:2: cannot find module providing package google.golang.org/grpc: working directory is not part of a module 因为开启mod模式了export GO111MODULE=aut ...
分类:其他好文   时间:2021-01-26 12:04:45    阅读次数:0
力扣404. 左叶子之和
原题链接 1 class Solution: 2 ans = 0 3 def sumOfLeftLeaves(self, root: TreeNode) -> int: 4 def dfs(root,flag): 5 if not root:return 6 if not root.left and ...
分类:其他好文   时间:2021-01-26 11:58:52    阅读次数:0
剑指 Offer 48. 最长不含重复字符的子字符串
原题链接 begin为最长不含重复字符的子字符串的起点 1 class Solution: 2 def lengthOfLongestSubstring(self, s: str) -> int: 3 begin,ans,dic = 0,0,{} 4 for index,c in enumerate ...
分类:其他好文   时间:2021-01-26 11:51:45    阅读次数:0
剑指offer | 树的子结构 | 26
思路分析 其实就是递归判断左树和右树,但是一些判断条件需要仔细思考下. cpp /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * ...
分类:其他好文   时间:2021-01-26 11:49:40    阅读次数:0
日常分享:关于时间复杂度和空间复杂度的一些优化心得分享(C#)
前言 今天分享一下日常工作中遇到的性能问题和解决方案,比较零碎,后续会持续更新(运行环境为.net core 3.1) 本次分享的案例都是由实际生产而来,经过简化后作为举例 Part 1(作为简单数据载体时class和struct的性能对比) 关于class和struct的区别,根据经验,在实际开发 ...
分类:Windows程序   时间:2021-01-25 11:28:51    阅读次数:0
并查集--leetcode1202. 交换字符串中的元素
1202. 交换字符串中的元素 给你一个字符串 s,以及该字符串中的一些「索引对」数组 pairs,其中 pairs[i] = [a, b] 表示字符串中的两个索引(编号从 0 开始)。 你可以 任意多次交换 在 pairs 中任意一对索引处的字符。 返回在经过若干次交换后,s 可以变成的按字典序最 ...
分类:其他好文   时间:2021-01-22 12:27:19    阅读次数:0
IELTS口语预测-2020年9-12月
Part 1: 住处 Do you live in a house or a flat? Which is your favourite room in your house / flat? What do you like about the area that you live in? Is t ...
分类:其他好文   时间:2021-01-22 12:11:42    阅读次数:0
8. 字符串转换整数(atoi) - LeetCode
8. 字符串转换整数(atoi) 直接模拟 class Solution { public int myAtoi(String s) { int ans = 0; int coefficient = 1; boolean hasFirst = false; for(char c : s.toChar ...
分类:其他好文   时间:2021-01-22 12:04:19    阅读次数:0
14980条   上一页 1 ... 28 29 30 31 32 ... 1498 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!