1209. Remove All Adjacent Duplicates in String II
package LeetCode_1209 import java.util.* /** * 1209. Remove All Adjacent Duplicates in String II * https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string-ii/description/ * * Given a string s, a k duplicate removal consists of choosing k adjacent and equal letters from s and removing them causing the left and the right side of the deleted substring to concatenate together. We repeatedly make k duplicate removals on s until we no longer can. Return the final string after all such duplicate removals have been made. It is guaranteed that the answer is unique. Example 1: Input: s = "abcd", k = 2 Output: "abcd" Explanation: There's nothing to delete. Example 2: Input: s = "deeedbbcccbdaa", k = 3 Output: "aa" Explanation: First delete "eee" and "ccc", get "ddbbbdaa" Then delete "bbb", get "dddaa" Finally delete "ddd", get "aa" Example 3: Input: s = "pbbcggttciiippooaais", k = 2 Output: "ps" Constraints: 1 <= s.length <= 10^5 2 <= k <= 10^4 s only contains lower case English letters. * */ data class Node(var char: Char, var count: Int = 1) class Solution { /* * solution:Queue, Time complexity:O(n), Space complexity:O(n) * */ fun removeDuplicates(s: String, k: Int): String { val result = StringBuilder() var removed = false val queue = LinkedList<Node>() for (c in s) { //keep tracking the element at the tail if (queue.isEmpty() || queue.last.char != c) { queue.addLast(Node(c)) } else { queue.last.count++ if (queue.last.count == k) { queue.removeLast() removed = true } } } if (!removed) { return s } while (queue.isNotEmpty()) { val cur = queue.removeFirst() while (cur.count-- > 0) { result.append(cur.char) } } return result.toString() } }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· .NET10 - 预览版1新功能体验(一)