Download Jar. Libraryless. Click here for Pure Java version (6090L/43K).
!7 p-exp { pnl(iteratorToList(shuffledIterator(words("This is a very good test")))); } static <A> Iterator<A> shuffledIterator(final List<A> l) { return new Iterator<A>() { Random randomizer = new Random(); int n = l.size(); int i = 0; Map<Integer, A> shuffled = new HashMap(); public boolean hasNext() { ret i < n; } public A next() { int j = i+randomizer.nextInt(n-i); A a = get(i), b = get(j); shuffled.put(j, a); shuffled.remove(i); ++i; return b; } A get(int i) { return shuffled.containsKey(i) ? shuffled.get(i) : l.get(i); } }; }
Began life as a copy of #1017662
download show line numbers debug dex old transpilations
Travelled to 14 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, irmadwmeruwu, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
| Snippet ID: | #1017663 |
| Snippet name: | shuffledIterator, Java version |
| Eternal ID of this version: | #1017663/3 |
| Text MD5: | 6745fc37eca9a6aea80bb48ee99d8ecb |
| Transpilation MD5: | 7874a5721a1d8a310ddccdfb733aef8b |
| Author: | stefan |
| Category: | javax |
| Type: | JavaX source code (desktop) |
| Public (visible to everyone): | Yes |
| Archived (hidden from active list): | No |
| Created/modified: | 2018-07-31 19:02:22 |
| Source code size: | 665 bytes / 29 lines |
| Pitched / IR pitched: | No / No |
| Views / Downloads: | 664 / 1626 |
| Version history: | 2 change(s) |
| Referenced in: | [show references] |