日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > java >内容正文

java

leetcode 722. Remove Comments | 722. 删除注释(Java)

發(fā)布時間:2024/2/28 java 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 leetcode 722. Remove Comments | 722. 删除注释(Java) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題目

題解

測試用例太惡心了,受不鳥啊

class Solution {public static final char NO_NEW_LINE = '\'';public List<String> removeComments(String[] source) {boolean pending = false;List<String> result = new ArrayList<>();for (int i = 0; i < source.length; i++) {if (!pending) { // 左注釋符已閉合int i1 = source[i].indexOf("//");if (i1 < 0) i1 = source[i].length();int i2 = source[i].indexOf("/*");if (i2 < 0) i2 = source[i].length();if (i1 == i2) { // 本行無注釋add(result, source[i]);} else if (i1 < i2) { // 本行先出現//String s = source[i].substring(0, i1);add(result, s);} else { // 本行先出現/*String s = source[i].substring(0, i2);if (s.length() > 0) add(result, s + NO_NEW_LINE);source[i] = source[i].substring(i2 + 2);pending = true;i--;}} else { // 左注釋符未閉合int i2 = source[i].indexOf("*/");if (i2 >= 0) {source[i] = source[i].substring(i2 + 2);pending = false;i--;}}}return result;}public void add(List<String> result, String s) {if (!result.isEmpty()) {String tail = result.get(result.size() - 1);int len = tail.length();if (tail.charAt(len - 1) == NO_NEW_LINE) { // implicit newline characters can be deleted by block commentsresult.set(result.size() - 1, tail.substring(0, len - 1) + s);return;}}if (s.length() > 0) result.add(s);} }

總結

以上是生活随笔為你收集整理的leetcode 722. Remove Comments | 722. 删除注释(Java)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。