sbool startsWithOneOf_treeSet(S s, TreeSet set) { if (set == null || s == null) false; S key = set.floorKey(s); ret startsWith(s, key); }