Skip to content

Commit ad2d4ef

Browse files
Add Javadoc
1 parent 89dda3f commit ad2d4ef

17 files changed

+2775
-10
lines changed

index.md

+1-10
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,7 @@ while removing their main drawback: a fixed size.
66
The Queue is backed by arrays of Objects with exponentially growing sizes, of which all are in use,
77
but only the first one (with initialCapacity) is allocated up-front.
88

9-
A detailed description is given in [Paper](Paper_MultiArrayQueue.pdf).
10-
Performance figures are in the Paper as well.
9+
[Repository](https://github.com/MultiArrayQueue/MultiArrayQueue)
1110

1211
<img src="Diagram_MultiArrayQueue.png" height="600">
1312

14-
## Interactive Simulator
15-
16-
[Get acquainted with the new Queue here](Simulator_MultiArrayQueue.html)
17-
18-
## Program codes
19-
20-
[Repository](https://github.com/MultiArrayQueue/MultiArrayQueue)
21-

javadoc/allclasses-frame.html

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2+
<!-- NewPage -->
3+
<html lang="en">
4+
<head>
5+
<!-- Generated by javadoc (1.8.0_432) on Thu Nov 28 09:21:08 CET 2024 -->
6+
<title>All Classes</title>
7+
<meta name="date" content="2024-11-28">
8+
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
9+
<script type="text/javascript" src="script.js"></script>
10+
</head>
11+
<body>
12+
<h1 class="bar">All&nbsp;Classes</h1>
13+
<div class="indexContainer">
14+
<ul>
15+
<li><a href="com/github/MultiArrayQueue/BlockingMultiArrayQueue.html" title="class in com.github.MultiArrayQueue" target="classFrame">BlockingMultiArrayQueue</a></li>
16+
<li><a href="com/github/MultiArrayQueue/ConcurrentMultiArrayQueue.html" title="class in com.github.MultiArrayQueue" target="classFrame">ConcurrentMultiArrayQueue</a></li>
17+
</ul>
18+
</div>
19+
</body>
20+
</html>

javadoc/allclasses-noframe.html

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2+
<!-- NewPage -->
3+
<html lang="en">
4+
<head>
5+
<!-- Generated by javadoc (1.8.0_432) on Thu Nov 28 09:21:08 CET 2024 -->
6+
<title>All Classes</title>
7+
<meta name="date" content="2024-11-28">
8+
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
9+
<script type="text/javascript" src="script.js"></script>
10+
</head>
11+
<body>
12+
<h1 class="bar">All&nbsp;Classes</h1>
13+
<div class="indexContainer">
14+
<ul>
15+
<li><a href="com/github/MultiArrayQueue/BlockingMultiArrayQueue.html" title="class in com.github.MultiArrayQueue">BlockingMultiArrayQueue</a></li>
16+
<li><a href="com/github/MultiArrayQueue/ConcurrentMultiArrayQueue.html" title="class in com.github.MultiArrayQueue">ConcurrentMultiArrayQueue</a></li>
17+
</ul>
18+
</div>
19+
</body>
20+
</html>

0 commit comments

Comments
 (0)