您的位置:首页 > 编程语言 > Java开发

Performance comparison for loops of List in java

2014-01-02 11:47 239 查看

Performance comparison for loops of List in java

Introduce five loop ways for both ArrayList and LinkedList, the performance test comparing different ways, Analysis of performance results according to the source code of ArrayList and LinkedList, summarize conclusions.

Through this article you can learn (1) Five traversal methods and their performance of List (2) foreach and Iterator implementation (3) understand of ArrayList and LinkedList implementation.

Before reading this article I hope you have learned sequential storage of ArrayList and chain structure of LinkedList.

Related: Performance comparison of different ways to iterate over HashMap

1. Five loop ways for List

Here is a brief example of a variety of traversal (in case of ArrayList) , the respective advantages and disadvantages will be analyzed later in this conclusion is given .

(1) for each loop

Java

List<Integer> list = new ArrayList<Integer>();
for (Integer j : list) {
// use j
}

1
2
3
4

List<Integer>
list =
new ArrayList<Integer>();

for (Integer
j :
list)
{
// use j

}

(2) obvious call iterator



Java

List<Integer> list = new ArrayList<Integer>();
for (Iterator<Integer> iterator = list.iterator(); iterator.hasNext();) {
iterator.next();
}

1
2
3
4

List<Integer>
list =
new ArrayList<Integer>();

for (Iterator<Integer>
iterator =
list.iterator();
iterator.hasNext();)
{
iterator.next();

}

or

Java

List<Integer> list = new ArrayList<Integer>();
Iterator<Integer> iterator = list.iterator();
while (iterator.hasNext()) {
iterator.next();
}

1
2
3
4
5

List<Integer>
list =
new ArrayList<Integer>();

Iterator<Integer>
iterator =
list.iterator();
while
(iterator.hasNext())
{

iterator.next();
}

(3) use get() with index increase, termination condition call size () function



Java

List<Integer> list = new ArrayList<Integer>();
for (int j = 0; j < list.size(); j++) {
list.get(j);
}

1
2
3
4

List<Integer>
list =
new ArrayList<Integer>();

for (int
j =
0;
j <
list.size();
j++)
{
list.get(j);

}

(4) use get() with index increase, termination condition use temp variablereplace size () function



Java

List<Integer> list = new ArrayList<Integer>();
int size = list.size();
for (int j = 0; j < size; j++) {
list.get(j);
}

1
2
3
4
5

List<Integer>
list =
new ArrayList<Integer>();

int size
= list.size();
for
(int
j =
0;
j <
size;
j++)
{

list.get(j);
}

(5) [b]use get() with index decrease

[/b]

Java

List<Integer> list = new ArrayList<Integer>();
for (int j = list.size() - 1; j >= 0; j--) {
list.get(j);
}

1
2
3
4

List<Integer>
list =
new ArrayList<Integer>();

for (int
j =
list.size()
- 1;
j >=
0;
j--)
{
list.get(j);

}

Before the test we can think about which performance is better of the five kinds of traversal above, based on the data structure of the List and understanding of Iterator .

2、Performance testing of five kinds of traversal above and contrast

The following is the source code of performance test, it will print time spent for different magnitude and different way of ArrayList and LinkedList loop.

ArrayList和LinkedList循环性能对比测试代码

Java

package cn.trinea.java.test;

import java.text.DecimalFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;

/**
* JavaLoopTest
*
* @author www.trinea.cn 2013-10-28
*/
public class JavaLoopTest {

public static void main(String[] args) {

System.out.print("compare loop performance of ArrayList");
loopListCompare(getArrayLists(10000, 100000, 1000000, 9000000));

System.out.print("\r\n\r\ncompare loop performance of LinkedList");
loopListCompare(getLinkedLists(100, 1000, 10000, 100000));
}

public static List<Integer>[] getArrayLists(int... sizeArray) {
List<Integer>[] listArray = new ArrayList[sizeArray.length];
for (int i = 0; i < listArray.length; i++) {
int size = sizeArray[i];
List<Integer> list = new ArrayList<Integer>();
for (int j = 0; j < size; j++) {
list.add(j);
}
listArray[i] = list;
}
return listArray;
}

public static List<Integer>[] getLinkedLists(int... sizeArray) {
List<Integer>[] listArray = new LinkedList[sizeArray.length];
for (int i = 0; i < listArray.length; i++) {
int size = sizeArray[i];
List<Integer> list = new LinkedList<Integer>();
for (int j = 0; j < size; j++) {
list.add(j);
}
listArray[i] = list;
}
return listArray;
}

public static void loopListCompare(List<Integer>... listArray) {
printHeader(listArray);
long startTime, endTime;

// Type 1
for (int i = 0; i < listArray.length; i++) {
List<Integer> list = listArray[i];
startTime = Calendar.getInstance().getTimeInMillis();
for (Integer j : list) {
// use j
}
endTime = Calendar.getInstance().getTimeInMillis();
printCostTime(i, listArray.length, "for each", endTime - startTime);
}

// Type 2
for (int i = 0; i < listArray.length; i++) {
List<Integer> list = listArray[i];
startTime = Calendar.getInstance().getTimeInMillis();
// Iterator<Integer> iterator = list.iterator();
// while(iterator.hasNext()) {
// iterator.next();
// }
for (Iterator<Integer> iterator = list.iterator(); iterator.hasNext();) {
iterator.next();
}
endTime = Calendar.getInstance().getTimeInMillis();
printCostTime(i, listArray.length, "for iterator", endTime - startTime);
}

// Type 3
for (int i = 0; i < listArray.length; i++) {
List<Integer> list = listArray[i];
startTime = Calendar.getInstance().getTimeInMillis();
for (int j = 0; j < list.size(); j++) {
list.get(j);
}
endTime = Calendar.getInstance().getTimeInMillis();
printCostTime(i, listArray.length, "for list.size()", endTime - startTime);
}

// Type 4
for (int i = 0; i < listArray.length; i++) {
List<Integer> list = listArray[i];
startTime = Calendar.getInstance().getTimeInMillis();
int size = list.size();
for (int j = 0; j < size; j++) {
list.get(j);
}
endTime = Calendar.getInstance().getTimeInMillis();
printCostTime(i, listArray.length, "for size = list.size()", endTime - startTime);
}

// Type 5
for (int i = 0; i < listArray.length; i++) {
List<Integer> list = listArray[i];
startTime = Calendar.getInstance().getTimeInMillis();
for (int j = list.size() - 1; j >= 0; j--) {
list.get(j);
}
endTime = Calendar.getInstance().getTimeInMillis();
printCostTime(i, listArray.length, "for j--", endTime - startTime);
}
}

static int FIRST_COLUMN_LENGTH = 23, OTHER_COLUMN_LENGTH = 12, TOTAL_COLUMN_LENGTH = 71;
static final DecimalFormat COMMA_FORMAT = new DecimalFormat("#,###");

public static void printHeader(List<Integer>... listArray) {
printRowDivider();
for (int i = 0; i < listArray.length; i++) {
if (i == 0) {
StringBuilder sb = new StringBuilder().append("list size");
while (sb.length() < FIRST_COLUMN_LENGTH) {
sb.append(" ");
}
System.out.print(sb);
}

StringBuilder sb = new StringBuilder().append("| ").append(COMMA_FORMAT.format(listArray[i].size()));
while (sb.length() < OTHER_COLUMN_LENGTH) {
sb.append(" ");
}
System.out.print(sb);
}
TOTAL_COLUMN_LENGTH = FIRST_COLUMN_LENGTH + OTHER_COLUMN_LENGTH * listArray.length;
printRowDivider();
}

public static void printRowDivider() {
System.out.println();
StringBuilder sb = new StringBuilder();
while (sb.length() < TOTAL_COLUMN_LENGTH) {
sb.append("-");
}
System.out.println(sb);
}

public static void printCostTime(int i, int size, String caseName, long costTime) {
if (i == 0) {
StringBuilder sb = new StringBuilder().append(caseName);
while (sb.length() < FIRST_COLUMN_LENGTH) {
sb.append(" ");
}
System.out.print(sb);
}

StringBuilder sb = new StringBuilder().append("| ").append(costTime).append(" ms");
while (sb.length() < OTHER_COLUMN_LENGTH) {
sb.append(" ");
}
System.out.print(sb);

if (i == size - 1) {
printRowDivider();
}
}
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169

package
cn.trinea.java.test;

import
java.text.DecimalFormat;

import java.util.ArrayList;
import
java.util.Calendar;

import java.util.Iterator;
import
java.util.LinkedList;

import java.util.List;

/**
* JavaLoopTest

*
* @author www.trinea.cn 2013-10-28

*/
public
class JavaLoopTest
{

public
static void
main(String[]
args)
{

System.out.print("compare
loop performance of ArrayList");

loopListCompare(getArrayLists(10000,
100000,
1000000,
9000000));

System.out.print("\r\n\r\ncompare
loop performance of LinkedList");
loopListCompare(getLinkedLists(100,
1000,
10000,
100000));

}

public
static List<Integer>[]
getArrayLists(int...
sizeArray)
{
List<Integer>[]
listArray =
new ArrayList[sizeArray.length];

for
(int
i =
0;
i <
listArray.length;
i++)
{
int
size =
sizeArray[i];

List<Integer>
list =
new ArrayList<Integer>();
for
(int
j =
0;
j <
size;
j++)
{

list.add(j);
}

listArray[i]
= list;
}

return
listArray;
}

public
static List<Integer>[]
getLinkedLists(int...
sizeArray)
{

List<Integer>[]
listArray =
new LinkedList[sizeArray.length];
for
(int
i =
0;
i <
listArray.length;
i++)
{

int
size =
sizeArray[i];
List<Integer>
list =
new LinkedList<Integer>();

for
(int
j =
0;
j <
size;
j++)
{
list.add(j);

}
listArray[i]
= list;

}
return
listArray;

}

public
static void
loopListCompare(List<Integer>...
listArray)
{
printHeader(listArray);

long
startTime,
endTime;

// Type 1
for
(int
i =
0;
i <
listArray.length;
i++)
{

List<Integer>
list =
listArray[i];
startTime
= Calendar.getInstance().getTimeInMillis();

for
(Integer
j :
list)
{
// use j

}
endTime
= Calendar.getInstance().getTimeInMillis();

printCostTime(i,
listArray.length,
"for each",
endTime -
startTime);
}

// Type 2

for
(int
i =
0;
i <
listArray.length;
i++)
{
List<Integer>
list =
listArray[i];

startTime
= Calendar.getInstance().getTimeInMillis();
// Iterator<Integer> iterator = list.iterator();

// while(iterator.hasNext()) {
// iterator.next();

// }
for
(Iterator<Integer>
iterator =
list.iterator();
iterator.hasNext();)
{

iterator.next();
}

endTime
= Calendar.getInstance().getTimeInMillis();
printCostTime(i,
listArray.length,
"for iterator",
endTime -
startTime);

}

// Type 3
for
(int
i =
0;
i <
listArray.length;
i++)
{

List<Integer>
list =
listArray[i];
startTime
= Calendar.getInstance().getTimeInMillis();

for
(int
j =
0;
j <
list.size();
j++)
{
list.get(j);

}
endTime
= Calendar.getInstance().getTimeInMillis();

printCostTime(i,
listArray.length,
"for list.size()",
endTime -
startTime);
}

// Type 4

for
(int
i =
0;
i <
listArray.length;
i++)
{
List<Integer>
list =
listArray[i];

startTime
= Calendar.getInstance().getTimeInMillis();
int
size =
list.size();

for
(int
j =
0;
j <
size;
j++)
{
list.get(j);

}
endTime
= Calendar.getInstance().getTimeInMillis();

printCostTime(i,
listArray.length,
"for size = list.size()",
endTime -
startTime);
}

// Type 5

for
(int
i =
0;
i <
listArray.length;
i++)
{
List<Integer>
list =
listArray[i];

startTime
= Calendar.getInstance().getTimeInMillis();
for
(int
j =
list.size()
- 1;
j >=
0;
j--)
{

list.get(j);
}

endTime
= Calendar.getInstance().getTimeInMillis();
printCostTime(i,
listArray.length,
"for j--",
endTime -
startTime);

}
}

static
int
FIRST_COLUMN_LENGTH =
23,
OTHER_COLUMN_LENGTH
= 12,
TOTAL_COLUMN_LENGTH
= 71;

static
final DecimalFormat
COMMA_FORMAT =
new DecimalFormat("#,###");

public
static void
printHeader(List<Integer>...
listArray)
{
printRowDivider();

for
(int
i =
0;
i <
listArray.length;
i++)
{
if
(i
== 0)
{

StringBuilder
sb =
new StringBuilder().append("list
size");
while
(sb.length()
< FIRST_COLUMN_LENGTH)
{

sb.append(" ");
}

System.out.print(sb);
}

StringBuilder
sb =
new StringBuilder().append("|
").append(COMMA_FORMAT.format(listArray[i].size()));

while
(sb.length()
< OTHER_COLUMN_LENGTH)
{
sb.append("
");

}
System.out.print(sb);

}
TOTAL_COLUMN_LENGTH
= FIRST_COLUMN_LENGTH
+ OTHER_COLUMN_LENGTH
* listArray.length;

printRowDivider();
}

public
static void
printRowDivider()
{

System.out.println();
StringBuilder
sb =
new StringBuilder();

while
(sb.length()
< TOTAL_COLUMN_LENGTH)
{
sb.append("-");

}
System.out.println(sb);

}

public
static void
printCostTime(int
i,
int size,
String caseName,
long costTime)
{
if
(i
== 0)
{

StringBuilder
sb =
new StringBuilder().append(caseName);
while
(sb.length()
< FIRST_COLUMN_LENGTH)
{

sb.append(" ");
}

System.out.print(sb);
}

StringBuilder
sb =
new StringBuilder().append("|
").append(costTime).append("
ms");

while
(sb.length()
< OTHER_COLUMN_LENGTH)
{
sb.append("
");

}
System.out.print(sb);

if
(i
== size
- 1)
{

printRowDivider();
}

}
}

PS: If you run the code with exception in thread “main” java.lang.OutOfMemoryError: Java heap space, reduce the size of list in main function.

getArrayLists fuction is used to return Arraylist of different size, getLinkedLists fuction is used to return LinkedList of different size。

loopListCompare function will loop list array use loop ways above.

Function begin with print are used to help print。

Test environment is is Windows7 32bits, 3.2G dual core cpu, 4G memory, Java 7, Eclipse -Xms512m -Xmx512m

Final test results are as follows :

Java

compare loop performance of ArrayList
-----------------------------------------------------------------------
list size | 10,000 | 100,000 | 1,000,000 | 10,000,000
-----------------------------------------------------------------------
for each | 1 ms | 3 ms | 14 ms | 152 ms
-----------------------------------------------------------------------
for iterator | 0 ms | 1 ms | 12 ms | 114 ms
-----------------------------------------------------------------------
for list.size() | 1 ms | 1 ms | 13 ms | 128 ms
-----------------------------------------------------------------------
for size = list.size() | 0 ms | 0 ms | 6 ms | 62 ms
-----------------------------------------------------------------------
for j-- | 0 ms | 1 ms | 6 ms | 63 ms
-----------------------------------------------------------------------

compare loop performance of LinkedList
-----------------------------------------------------------------------
list size | 100 | 1,000 | 10,000 | 100,000
-----------------------------------------------------------------------
for each | 0 ms | 1 ms | 1 ms | 2 ms
-----------------------------------------------------------------------
for iterator | 0 ms | 0 ms | 0 ms | 2 ms
-----------------------------------------------------------------------
for list.size() | 0 ms | 1 ms | 73 ms | 7972 ms
-----------------------------------------------------------------------
for size = list.size() | 0 ms | 0 ms | 67 ms | 8216 ms
-----------------------------------------------------------------------
for j-- | 0 ms | 1 ms | 67 ms | 8277 ms
-----------------------------------------------------------------------

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

compare
loop performance
of ArrayList

-----------------------------------------------------------------------
list
size |
10,000 |
100,000
| 1,000,000
| 10,000,000

-----------------------------------------------------------------------
for
each
| 1
ms |
3 ms |
14 ms
| 152
ms

-----------------------------------------------------------------------
for
iterator
| 0
ms |
1 ms |
12 ms
| 114
ms

-----------------------------------------------------------------------
for
list.size() |
1 ms |
1 ms |
13 ms
| 128
ms

-----------------------------------------------------------------------
for
size =
list.size()
| 0
ms |
0 ms |
6 ms |
62 ms

-----------------------------------------------------------------------
for
j-- |
0 ms |
1 ms |
6 ms |
63 ms

-----------------------------------------------------------------------

compare loop performance
of LinkedList
-----------------------------------------------------------------------

list size |
100 |
1,000
| 10,000 |
100,000

-----------------------------------------------------------------------

for each
| 0
ms |
1 ms |
1 ms |
2 ms
-----------------------------------------------------------------------

for iterator
| 0
ms |
0 ms |
0 ms |
2 ms
-----------------------------------------------------------------------

for list.size() |
0 ms |
1 ms |
73 ms
| 7972
ms
-----------------------------------------------------------------------

for size
= list.size()
| 0
ms |
0 ms |
67 ms
| 8216
ms
-----------------------------------------------------------------------

for j-- |
0 ms |
1 ms |
67 ms
| 8277
ms
-----------------------------------------------------------------------

The first table show the compare results for the ArrayList, second table shows the compare result of LinkedList.

Row represents time spent for different size of list with same loop way, Column represents time spent for different loop way with same list.

PS: As for the first loop time will be a little more time consuming, result for loop way use for each is a little deviation.You can change the order of different loop way in the test code, you will find time-consuming with loop way use for each is close
to loop way use for iterator.

3、Analysis performance test results

(1) foreach


foreach is a loop structure, introduced in Java SE5.0, for (Integer j: list) should be readed as for each int in list.

for (Integer j : list) almost equivalent to

Java

Iterator<Integer> iterator = list.iterator();
while(iterator.hasNext()) {
Integer j = iterator.next();
}

1
2
3
4

Iterator<Integer>
iterator =
list.iterator();

while(iterator.hasNext())
{
Integer
j =
iterator.next();

}

The following analysis will classified obvious call iterator and for each as loop way of Iterator, the other three are classified as loop way of get.

We have found that one of the major benefits of foreach, the simple line to achieve a four-line features,
that make the code simple and beautiful, the other big advantage is relative to loop way of get, foreach no need to care about index out of bound, so you will not go wrong.

Effective-Java recommended use foreach instead of index loop, we will verify this statement.

class which can use foreach must implement the Iterable interface, Java’s Collection inherit from interfaces already, List implements Collection. The Iterable interface contains only one function, source code is as follows:

Java

package java.lang;

import java.util.Iterator;

/**
* Implementing this interface allows an object to be the target of
* the "foreach" statement.
*
* @param <T> the type of elements returned by the iterator
*
* @since 1.5
*/
public interface Iterable<T> {

/**
* Returns an iterator over a set of elements of type T.
*
* @return an Iterator.
*/
Iterator<T> iterator();
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

package
java.lang;

import
java.util.Iterator;

/**

* Implementing this interface allows an object to be the target of
* the "foreach" statement.

*
* @param <T> the type of elements returned by the iterator

*
* @since 1.5

*/
public
interface Iterable<T>
{

/**

* Returns an iterator over a set of elements of type T.
*

* @return an Iterator.
*/

Iterator<T>
iterator();
}

iterator () is used to return an Iterator. from implementation of foreach we can see , it will call this function to get Iterator, and then get the next element through the next() function of Iterator, hasNext() determine whether there are more elements.
Iterator source as follows:

Java

public interface Iterator<E> {
boolean hasNext();

E next();

void remove();
}

1
2
3
4
5
6
7

public
interface Iterator<E>
{

boolean
hasNext();

E
next();

void
remove();
}

(2) Analysis performance test results of ArrayList



Java

compare loop performance of ArrayList
-----------------------------------------------------------------------
list size | 10,000 | 100,000 | 1,000,000 | 10,000,000
-----------------------------------------------------------------------
for each | 1 ms | 3 ms | 14 ms | 152 ms
-----------------------------------------------------------------------
for iterator | 0 ms | 1 ms | 12 ms | 114 ms
-----------------------------------------------------------------------
for list.size() | 1 ms | 1 ms | 13 ms | 128 ms
-----------------------------------------------------------------------
for size = list.size() | 0 ms | 0 ms | 6 ms | 62 ms
-----------------------------------------------------------------------
for j-- | 0 ms | 1 ms | 6 ms | 63 ms
-----------------------------------------------------------------------

1
2
3
4
5
6
7
8
9
10
11
12
13
14

compare
loop performance
of ArrayList

-----------------------------------------------------------------------
list
size |
10,000 |
100,000
| 1,000,000
| 10,000,000

-----------------------------------------------------------------------
for
each
| 1
ms |
3 ms |
14 ms
| 152
ms

-----------------------------------------------------------------------
for
iterator
| 0
ms |
1 ms |
12 ms
| 114
ms

-----------------------------------------------------------------------
for
list.size() |
1 ms |
1 ms |
13 ms
| 128
ms

-----------------------------------------------------------------------
for
size =
list.size()
| 0
ms |
0 ms |
6 ms |
62 ms

-----------------------------------------------------------------------
for
j-- |
0 ms |
1 ms |
6 ms |
63 ms

-----------------------------------------------------------------------

PS: As for the first loop time will be a little more time consuming, result for loop way use for each is a little deviation.You can change the order of different loop way in the test code, you will find time-consuming with loop way use for each is close
to loop way use for iterator.

From the above we can see that :

a. the time-consuming is about same when size of arrayList size is one hundred thousand or less.

b. when size of arrayList size is bigger than one hundred thousand, loop use Iterator cost more time than loop use get, but just abount 50ms. use temp variable is better than list.size() function.

Java

int size = list.size();
for (int j = 0; j < size; j++) {
list.get(j);
}

1
2
3
4

int
size =
list.size();

for (int
j =
0;
j <
size;
j++)
{
list.get(j);

}

following are implements of Iterator and get() function in ArrayList

Java

private class Itr implements Iterator<E> {
int cursor; // index of next element to return
int lastRet = -1; // index of last element returned; -1 if no such
int expectedModCount = modCount;

public boolean hasNext() {
return cursor != size;
}

@SuppressWarnings("unchecked")
public E next() {
checkForComodification();
int i = cursor;
if (i >= size)
throw new NoSuchElementException();
Object[] elementData = ArrayList.this.elementData;
if (i >= elementData.length)
throw new ConcurrentModificationException();
cursor = i + 1;
return (E) elementData[lastRet = i];
}
……
}

public E get(int index) {
rangeCheck(index);

return elementData(index);
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

private
class Itr
implements Iterator<E>
{

int
cursor;
// index of next element to return
int
lastRet =
-1;
// index of last element returned; -1 if no such

int
expectedModCount
= modCount;

public
boolean hasNext()
{
return
cursor !=
size;

}

@SuppressWarnings("unchecked")
public
E next()
{

checkForComodification();
int
i =
cursor;

if
(i
>= size)
throw
new NoSuchElementException();

Object[]
elementData =
ArrayList.this.elementData;
if
(i
>= elementData.length)

throw
new ConcurrentModificationException();
cursor
= i
+ 1;

return
(E)
elementData[lastRet
= i];
}

……
}

public
E get(int
index)
{

rangeCheck(index);

return
elementData(index);
}

As you see above, both get() function of ArrayList and next() function of Iterator use index to get element directly, just a few more judgments in next().

c. We can see cost 50ms more even when size of ArrayList is 10,000,000. The time-consuming is about same when size of arrayList size is one hundred thousand or less, and it’s more commmon this situation, so we can choose foreach consider about the advantage
of foreach.

(3) [b]Analysis performance test results of LinkedList[/b]

Java

compare loop performance of LinkedList
-----------------------------------------------------------------------
list size | 100 | 1,000 | 10,000 | 100,000
-----------------------------------------------------------------------
for each | 0 ms | 1 ms | 1 ms | 2 ms
-----------------------------------------------------------------------
for iterator | 0 ms | 0 ms | 0 ms | 2 ms
-----------------------------------------------------------------------
for list.size() | 0 ms | 1 ms | 73 ms | 7972 ms
-----------------------------------------------------------------------
for size = list.size() | 0 ms | 0 ms | 67 ms | 8216 ms
-----------------------------------------------------------------------
for j-- | 0 ms | 1 ms | 67 ms | 8277 ms
-----------------------------------------------------------------------

1
2
3
4
5
6
7
8
9
10
11
12
13
14

compare
loop performance
of LinkedList

-----------------------------------------------------------------------
list
size |
100 |
1,000
| 10,000 |
100,000

-----------------------------------------------------------------------
for
each
| 0
ms |
1 ms |
1 ms |
2 ms

-----------------------------------------------------------------------
for
iterator
| 0
ms |
0 ms |
0 ms |
2 ms

-----------------------------------------------------------------------
for
list.size() |
0 ms |
1 ms |
73 ms
| 7972
ms

-----------------------------------------------------------------------
for
size =
list.size()
| 0
ms |
0 ms |
67 ms
| 8216
ms

-----------------------------------------------------------------------
for
j-- |
0 ms |
1 ms |
67 ms
| 8277
ms

-----------------------------------------------------------------------

PS: As for the first loop time will be a little more time consuming, result for loop way use for each is a little deviation.You can change the order of different loop way in the test code, you will find time-consuming with loop way use for each is close
to loop way use for iterator.

From the above we can see that :

a. loop way by get() is slower than loop wary by Iterator almost 100 times when size of LinkedList is close to 10,000. loop way by get() is about 8 seconds when size of LinkedList is 100,000.

following are implements of Iterator and get() function in LinkedList:

Java

private class ListItr implements ListIterator<E> {
private Node<E> lastReturned = null;
private Node<E> next;
private int nextIndex;
private int expectedModCount = modCount;

ListItr(int index) {
// assert isPositionIndex(index);
next = (index == size) ? null : node(index);
nextIndex = index;
}

public boolean hasNext() {
return nextIndex < size;
}

public E next() {
checkForComodification();
if (!hasNext())
throw new NoSuchElementException();

lastReturned = next;
next = next.next;
nextIndex++;
return lastReturned.item;
}
……
}

public E get(int index) {
checkElementIndex(index);
return node(index).item;
}

/**
* Returns the (non-null) Node at the specified element index.
*/
Node<E> node(int index) {
// assert isElementIndex(index);

if (index < (size >> 1)) {
Node<E> x = first;
for (int i = 0; i < index; i++)
x = x.next;
return x;
} else {
Node<E> x = last;
for (int i = size - 1; i > index; i--)
x = x.prev;
return x;
}
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52

private
class ListItr
implements ListIterator<E>
{

private
Node<E>
lastReturned =
null;
private
Node<E>
next;

private
int nextIndex;
private
int expectedModCount
= modCount;

ListItr(int
index)
{

// assert isPositionIndex(index);
next
= (index
== size)
? null
: node(index);

nextIndex
= index;
}

public
boolean hasNext()
{

return
nextIndex <
size;
}

public
E next()
{

checkForComodification();
if
(!hasNext())

throw
new NoSuchElementException();

lastReturned
= next;
next
= next.next;

nextIndex++;
return
lastReturned.item;

}
……

}

public E
get(int
index)
{
checkElementIndex(index);

return
node(index).item;
}

/**

* Returns the (non-null) Node at the specified element index.
*/

Node<E>
node(int
index)
{
// assert isElementIndex(index);

if
(index
< (size
>> 1))
{

Node<E>
x =
first;
for
(int
i =
0;
i <
index;
i++)

x
= x.next;
return
x;

}
else {
Node<E>
x =
last;

for
(int
i =
size -
1;
i >
index;
i--)
x
= x.prev;

return
x;
}

}

As we can see above, the next() function get element by next pointer of last element, the time complexity of traversing use Iterator is O(n). but get() get element from the first index every time, find an element of time complexity is O(n), the time complexity
of traversing use get() reached O(n2).

So loop LinkedList recommend using foreach, avoid using get().

(4) Compare performance test results of ArrayList and LinkedList

Through the above results we can see. time-comsuming is almost same for ArrayList and LinkedList when loop by foreach, but the time complexity of get() for LinkedList is O(n), and just O(1) for ArrayList, and ArrayList cost less memory, so we recommended using
ArrayList first when choose List.

4、Summarize Conclusions

Through the analysis above, we can basically summarize:

(1) Whether ArrayList or LinkedList, loop it recommended foreach. avoid loop LinkedList by get() especially when size is big.

(2) Preferred using ArrayList when choose List. We can use LinkedList For situations there are more operations of insert and delete.

(3) There is situation we need the index of List when loop, this time we should consider use get() or foreach and count++ according necceary. If LinkedList, recommended use foreach and count++.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐