这是否返回一个空列表



我有这个从列表中删除元素的方法,

List<LinkedList<Object>> list = new LinkedList<>();

删除两个元素,返回一个列表,然后通过队列names=queue.removePair();

public List removePair() {
    List<E> nList = new LinkedList<>();
    if (list.isEmpty() == true) {
        throw new InsufficientElementsException();
    }
    if (list.isEmpty() == false) {
        Object temp;
        for (int i = 0; i < list.size(); i++) {
            temp = list.get(i).size();
            if (temp.equals(2)) {
                nList.add((E) list.get(i));
                list.remove(i);
            }
        }
        return nList;
    }
    return nList;
}

我相信这不起作用,因为当我返回 Nlist 时,它只返回第一行中声明的那个?我该如何解决这个问题?

你正在使用索引来同时removeget列表中的元素。remove后,您的索引将是错误的。请改用 for 循环中的Iterator

for (Iterator<List<Object>> iterator = list.iterator(); iterator.hasNext();) {
    List<Object> l = iterator.next();
    if (l.size() == 2) {
        nList.add((E) l);
        iterator.remove();
    }
}

您的以下代码:

if (temp.equals(2))

始终返回 false。这就是为什么你总是得到空列表。

我写了可能解决你的问题的代码。试试吧。评论中提到了更改。

// Used a generic class 
public class TestClass<T> where T:LinkedList<Object>
{
    public List<T> list = new List<T>();
    public List<T> TestMethod()
    {
        List<T> nList = new List<T>();
        // Removed IsEmpty , used Count instead
                    if (list.Count == 0) {
                        //throw new InsufficientElementsException();
                    }
                        if (list.Count > 0) {
                            int temp;
                            for (int i = 0; i < list.Count; i++)
                            {
                                // To find out the count of nodes in a particular item of the list
                                temp = list.ElementAt(i).Count;
                                T obj = list.ElementAt(i);
                                if (temp == 2)
                                {
                                    nList.Add(obj);
                                    list.RemoveAt(i);
                                }
                            }
                            return nList;
                        }
        return nList;
    }
}

相关内容

  • 没有找到相关文章

最新更新