LeetCode划水
A_linyuan
这个作者很懒,什么都没留下…
展开
-
leetcode394 解压字符串
leetcode394给定一个经过编码的字符串,返回它解码后的字符串。编码规则为: k[encoded_string],表示其中方括号内部的 encoded_string 正好重复 k 次。注意 k 保证为正整数。你可以认为输入字符串总是有效的;输入字符串中没有额外的空格,且输入的方括号总是符合格式要求的。此外,你可以认为原始数据不包含数字,所有的数字只表示重复的次数 k ,例如不会出现像 3a 或 2[4] 的输入。a2[c]=>accvar decodeString = functio原创 2020-08-25 13:33:25 · 210 阅读 · 0 评论 -
leetcode86 分隔链表
给定一个链表和一个特定值 x,对链表进行分隔,使得所有小于 x 的节点都在大于或等于 x 的节点之前。你应当保留两个分区中每个节点的初始相对位置。示例:输入: head = 1->4->3->2->5->2, x = 3输出: 1->2->2->4->3->5/** * Definition for singly-linked list. * function ListNode(val) { * this.val = val原创 2020-08-25 13:08:36 · 160 阅读 · 0 评论 -
LeetCode 72. Edit Distance (C++实现)
题目72. Edit DistanceGiven two words word1 and word2, find the minimum number of operations required to convert word1 to word2.(将word1变成word2)You have the following 3 operations permitted on a word:...原创 2020-01-05 01:08:47 · 201 阅读 · 0 评论