PASTEBIN
| #1 paste tool since 2002
create new paste
tools
api
archive
faq
PASTEBIN
create new paste
trending pastes
sign up
login
my alerts
my settings
my profile
Want more features on Pastebin?
Sign Up
, it's FREE!
Public Pastes
Untitled
6 sec ago
james' collective ...
11 sec ago
Untitled
9 sec ago
Punisher 1989 vLtr...
15 sec ago
Atlantis.1x
40 sec ago
Untitled
PHP | 36 sec ago
qweoiqpe
42 sec ago
Utoracanazard
52 sec ago
Untitled
By: a guest on
Aug 22nd, 2011
| syntax:
Java
| size: 0.14 KB | views:
43
| expires: Never
download
|
raw
|
embed
|
report abuse
|
print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
package
model
;
public
class
AdjazenzMartixGraph
{
public
AdjazenzMartixGraph
(
int
nodesCount
)
{
new
boolean
[
nodesCount
]
[
nodesCount
]
;
}
}
clone
this paste
RAW Paste Data
package model; public class AdjazenzMartixGraph { public AdjazenzMartixGraph(int nodesCount){ new boolean[nodesCount][nodesCount]; } }