Tagged Questions
0
votes
3answers
35 views
Ruby partially retrieve large amount of records and iterate over them
I'm newbie in Ruby but I have a lot of experience in other programming languages. I need to iterate over large amount of records (from db or any persistent storage). Storage engine allows me to ...
0
votes
4answers
60 views
Calling & Searching through an Arraylist in a different class
I am building a program to read a .txt file and extract the student data and store it in a collection. Then the user is supposed to be able to select several different queries. The query that I am ...
0
votes
1answer
76 views
Collection modified during foreach error
I know you can't modify a collection during a foreach, but I should be able to set variable values of the underlying iterator through it. For some reason the method below, every time it executes is ...
2
votes
2answers
65 views
How Iterator's remove method actually remove an object
We all know that the safest "and probably only safe" way of removing an object from a collection while iterating it, is by first retrieving the Iterator, perform a loop and remove when needed;
...
0
votes
3answers
83 views
Collections - clear()
I have created a collection and filled it with elements which are collections too, but when I tried to iterate through this container using a foreach construction (or other methods) it returns me ...
2
votes
1answer
44 views
Possible to get an ordered collection from a SortedMap?
I have a SortedMap (a TreeMap, specifically), from which I extract the values. Later, I need to get the first and last values, as they were ordered in the SortedMap.
SortedMap.values() returns a ...
0
votes
2answers
59 views
Delete elements from Vector without using Iterator
Hi I'm trying to delete certain elements from a vector. I have a solution working, but to me it's not elegant or ideal. I'm in MIDP so I don't have access to Iterator class. Any ideas what's the best ...
3
votes
7answers
146 views
Get last items in foreach php [duplicate]
Possible Duplicate:
Getting last 5 elements of a php array
Hi i have around 11000 items in an array and i want to display only last 5 or 10 items
$i = 0;
foreach ($collection as ...
0
votes
6answers
87 views
Java - Collection.remove() behaves differently in different conditions
This is a follow up to my previous question :
Collection - Iterator.remove() vs Collection.remove()
The below two pieces of code , which apparently differs only by a single line , but one throws ...
1
vote
5answers
104 views
Collection - Iterator.remove() vs Collection.remove()
As per Sun ,
"Iterator.remove is the only safe way to modify a collection during
iteration; the behavior is unspecified if the underlying collection is
modified in any other way while the ...
2
votes
2answers
165 views
How to test if a Java iterator always uses the same order (reproducible ordering)?
I have a code in which for-each-loops on a Set need to rely on the fact that the iterator returns the elements always in the same order, e.g.
for(ParameterObject parameter : parameters) {
/* ... ...
1
vote
4answers
87 views
Insert all records in an Iterable<Object> to a List in java
I have an Iterable<MyRecord> records . I iterate over the records like below and add it to a LinkedList as shown below.
for (MyRecord record: records){
sortedList.addLast(record);
}
...
0
votes
2answers
91 views
Multiple If conditions using Iterator in Java
I have a list which has elements 1 through 10.
I try to remove the prime numbers 2,3,5,7 from it and then print the rest of the list using iterator.But this code throws a NoSuchElementException.
this ...
1
vote
4answers
96 views
ConcurrentModificationException when using iterator and iterator.remove()
private int checkLevel(String bigWord, Collection<String> dict, MinMax minMax)
{
/*value initialised to losing*/
int value = 0;
if (minMax == MinMax.MIN) value = 1;
else ...
2
votes
3answers
64 views
Returning an iterator or opaque collection in Ruby
I'm often in a situation where I have a class that contains a collection. I'd like external code to be able to iterate over this collection, but not modify it.
I end up writing something like this:
...
2
votes
4answers
548 views
fail-fast iterator
I get this definition : As name suggest fail-fast Iterators fail as soon as they realized that structure of Collection has been changed since iteration has begun.
what it mean by since iteration has ...
2
votes
7answers
102 views
explanation for Common Iterator mistake
import java.io.*;
import javax.swing.JOptionPane;
import java.util.*;
public class lesson {
static void printAll(ArrayList<String> names, int len)
{
Iterator it = ...
1
vote
1answer
51 views
java customize a hashmap values
I am working on using a real time application in java, I have a data structure that looks like this.
HashMap<Integer, Object> myMap;
now this works really well for storing the data that I ...
2
votes
1answer
78 views
In Python, how do I determine if an iterable has stable iteration order?
In Python, how do I determine if an iterable has stable iteration order?
There's collections.Iterable abstract base class but there's no stable counterpart.
The reason I'm asking is to be able to ...
4
votes
2answers
153 views
How to write my own iterator for a collection property of a property (with correct type casting)?
I have a model class with some object compositions, and I don't know the best way to write iterators for this. To see the problem in more details, here is the hierarchy (semi-pseudo code):
A Root ...
0
votes
0answers
445 views
Comparing ArrayList elements using two iterators
I have an ArrayList of elements of type <Graph<V, E>> where each element represents a graph. I need to add edges between all possible pair of graphs. I am using ListIterator over the ...
6
votes
2answers
302 views
Why fill() , copy() ,reverse() and shuffle() of Collections in java is implemented this way
According to javadoc... Collections.fill() is written as below :
public static <T> void fill(List<? super T> list, T obj) {
int size = list.size();
if (size < ...
1
vote
3answers
260 views
Java implement Iterable, for each and method
I've this exercise with an algorithm to implement. I have this main:
public static void main(String[] args) {
Person a = new Person("Tony");
Person c = new Person("Luke");
...
0
votes
2answers
87 views
Java Iterate through a collection of classes and using their functions
i wanted to know how i can iterate through a collection of classes and be able to use the classes functions on every pass.
Im new to java and im much more familier with c++.
This is the collection i ...
1
vote
4answers
195 views
Iterator retrieve first value and place it back on the same iterator
I have the following scenario: I have an existing iterator Iterator<String> it and I iterate over its head (say first k elements, which are flagged elements, i.e. they start with '*' ). The only ...
0
votes
3answers
55 views
Java Iterator value sustaination
I have a very basic java iterator scenario...in which am facing the below problem on finding the working of the iterator
Will the iterator logIterator have the same values in both the while loops,or ...
9
votes
3answers
589 views
Iterator null collection
It's quite common that I have to check null before iterate when not sure the collection reference is null or not.
Sample:
Collection<Object> collection = ...
...
if(collection != ...
6
votes
4answers
269 views
why there is no add method in Iterator interface
In Iterator Sun added the remove method to remove the last accessed element of the collection. Why there is no add method to add a new element to the collection? What kind of side-effects it may have ...
-1
votes
1answer
146 views
It is said that Enumeration is little faster then Iterator why?
Why enumeration is faster then Iterator ? though we have more advantages with iterator then enumeration.
1
vote
4answers
944 views
Create List<T> instance from Iterator<T>
Anyone know if there is a standard way to create a List from an Iterator instance?
1
vote
2answers
103 views
Returning Iterator instead of Collection
Is there any advantage or where returning a iterator is more desirable that a collection in methods for data access layer?
I´ve seen it somewhere, and don´t remember why.
P.S: Maybe it has to do ...
0
votes
1answer
61 views
Will iterator be damaged if remove() called but did nothing?
Suppose I am iterating over some collection, then call remove() with absent key so that it does nothing. Will next iteration cause exception?
3
votes
8answers
155 views
How are Iterators Created?
A common approach to create an Iterator is :
Iterator iter = myarray.iterator();
Can anybody tell me how iter is created without new operator?
I know Iterator is an interface, so who implements ...
4
votes
3answers
172 views
Two java.util.Iterators to the same collection: do they have to return elements in the same order?
This is more of a theoretical question. If I have an arbitrary collection c that isn't ordered and I obtain two java.util.Iterators by calling c.iterator() twice, do both iterators have to return c's ...
2
votes
3answers
516 views
Iterable vs Iterator as a return behavior (Best Practice?)
I´d just want to know your opinion regarding to change all the Collections function output to an Iterable type.
This seems to me probably the most common code in Java nowadays, and everybody returns ...
1
vote
2answers
362 views
Remove List from Vector getting java.util.ConcurrentModificationException
I have tried to remove the list from a vector like below.
public class StringVectorTest {
private final List<String> stringVector = new Vector<String>();
@Test
public void ...
-1
votes
2answers
83 views
Iterator Map Issue
I wanted to take an iterator, which retrieves each record of an Array List(Each object in an array-list have three fields). Now, I wish to send the retrieved record to a function, where I want to ...
1
vote
1answer
77 views
Tips for adopting an STL frame of mind
I've been an almost exclusively C# programmer for the last 6 years. I'm now working on a project where C++ is the language of choice, and STL is our library for collections.
After using C#'s LINQ, ...
0
votes
1answer
88 views
Implementing such an iterator?
I have a list (an ArrayList, infact) of type HColumn<ColName, ColValue>. Now I want to implement an iterator() that iterates over this collection such that on iteration it gives out the ...
-1
votes
1answer
747 views
java.util.ConcurrentModificationException in iterating over TreeSet [duplicate]
Possible Duplicate:
ConcurrentModificationException and a HashMap
I am getting the following exception
Exception in thread "main" java.util.ConcurrentModificationException
at ...
2
votes
1answer
57 views
Whether iterating collection using a iterator is more effecient than normal iteration
I have a collection like follows:
final List list = new ArrayList(3);
Is it effecient to do something like below
for (final Iterator iter = list.iterator(); iter.hasNext();)
{
...
0
votes
2answers
132 views
Geotools nested loop over SimpleFeatureCollection
I want to to do a nested loop over a SimpleFeatureCollection. For each point I need to find its neihgbours and process them.
However, SimpleFeatureCollection allows only iterators, but not array ...
4
votes
1answer
272 views
Is it possible to combine Guava's ForwardingListIterator with a PeekingIterator?
I want to use Guava to implement a "peekable" ListIterator that lets me peek at the previous and next list elements without moving the cursor. This is akin to Guava's PeekingIterator, only ...
1
vote
3answers
235 views
Why is this ArrayList throwing a ConcurrentModificationException when I try to remove an element?
I'm trying to remove a particular element from Arraylist, it throws an ConcurrentModificationException
ArrayList<String> ar = new ArrayList<String>();
ar.add("a");
ar.add("b");
...
1
vote
2answers
137 views
Collection Iterator isn't returning every value
I'm trying to return the sequence from a Collection and apply it to a TextView. When I set the text, only one value is set, the last of the sequence. When I print the sequence, to check it's working, ...
0
votes
1answer
308 views
Why there's no “descendingIterator ()” in SortedSet but it is in TreeSet?
The fact that it hasn't been added yet to the interface makes me think there must be some valid reason. While I think that you shouldn't be passing sets around merrily and, hence, the implementation ...
4
votes
4answers
405 views
C# pointers, iterators and generics
I am greatly stumped
How can I use an iterator in C# like a C++ iterator? I cannot find a Begin() or End() accessor, I cannot even find out how to declare an iterator. I have read about the ...
5
votes
4answers
7k views
Java get last element of a collection
I have a collection, I want to get the last element of the collection. What's the most straighforward and fast way to do so?
One solution is to first toArray(), and then return the last element of ...
1
vote
2answers
211 views
Java: Copy collection with the use of Iterator
I have a method which as an argument has an iterator to the collection. Inside the method I want to copy the collection the iterator is "pointing to".
However only the last collection entry is present ...
1
vote
1answer
150 views
find_if in MFC container with iterator derived from std::iterator
I have a working iterator for MFC CObList - BaseMFCIter. It works for iterating in loop but i still didn't managed to make ListIter to work properly with STL algorithm find_if.
Code
#include < ...




