// i must point at the (possibly imaginary) opening bracket ("{") // index returned is index of closing bracket + 1 (or l(cnc)) static int findEndOfBlock(List<String> cnc, int i) { int j = i+2, level = 1, n = cnc.size(); while (j < n) { S t = cnc.get(j); if ("{".equals(t)) ++level; else if ("}".equals(t)) --level; if (level == 0) return j+1; j += 2; } return n; }
download show line numbers debug dex
Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, onxytkatvevr, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz
No comments. add comment
Snippet ID: | #1001046 |
Snippet name: | findEndOfBlock |
Eternal ID of this version: | #1001046/5 |
Text MD5: | aef4679919e9effe9d388a9102825715 |
Author: | stefan |
Category: | |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2019-03-04 00:15:59 |
Source code size: | 412 bytes / 14 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 529 / 2150 |
Version history: | 4 change(s) |
Referenced in: | [show references] |
Formerly at http://tinybrain.de/1001046 & http://1001046.tinybrain.de