優(yōu)點(diǎn)知識(shí) 陽(yáng)明 Kubernetes 網(wǎng)絡(luò)訓(xùn)練營(yíng)第1期
?Deque<Character> stack = new ArrayDeque<>();
? ? ? ?char[] chars = string.toCharArray();
? ? ? ?for (char ch : chars) {
? ? ? ? ? ?if ("[{(".indexOf(ch) >= 0) {
? ? ? ? ? ? ? ?stack.push(ch);
? ? ? ? ? ? ? ?continue;
? ? ? ? ? ?}
? ? ? ? ? ?Character head = stack.peek();
? ? ? ? ? ?if ("]})".indexOf(ch) >= 0) {
? ? ? ? ? ? ? ?if (head != null && ch == bracketMap.get(head)) {
? ? ? ? ? ? ? ? ? ?stack.pop();
? ? ? ? ? ? ? ? ? ?continue;
? ? ? ? ? ? ? ?} else {
? ? ? ? ? ? ? ? ? ?return false;
? ? ? ? ? ? ? ?}
標(biāo)簽: