Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
cs2-23wi
project08
Commits
54563d80
Commit
54563d80
authored
2 years ago
by
Snigdha Saha
Browse files
Options
Download
Email Patches
Plain Diff
add allocation files
parent
3f0cafc5
master
No related merge requests found
Pipeline
#79093
failed with stage
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
tests/edu/caltech/cs2/helpers/NewMe.java
+5
-0
tests/edu/caltech/cs2/helpers/NewMe.java
tests/edu/caltech/cs2/helpers/NewNode.java
+8
-0
tests/edu/caltech/cs2/helpers/NewNode.java
tests/edu/caltech/cs2/helpers/NewObjectArray.java
+5
-0
tests/edu/caltech/cs2/helpers/NewObjectArray.java
tests/edu/caltech/cs2/helpers/RuntimeCounter.java
+9
-0
tests/edu/caltech/cs2/helpers/RuntimeCounter.java
with
27 additions
and
0 deletions
+27
-0
tests/edu/caltech/cs2/helpers/NewMe.java
0 → 100644
View file @
54563d80
package
edu.caltech.cs2.helpers
;
public
class
NewMe
{
public
static
int
NUM_CALLS
=
0
;
}
This diff is collapsed.
Click to expand it.
tests/edu/caltech/cs2/helpers/NewNode.java
0 → 100644
View file @
54563d80
package
edu.caltech.cs2.helpers
;
public
class
NewNode
{
public
static
int
LinkedDeque_NUM_CALLS
;
public
static
int
MoveToFrontDictionary_NUM_CALLS
;
public
static
int
BSTDictionary_NUM_CALLS
;
public
static
int
TrieMap_NUM_CALLS
;
}
This diff is collapsed.
Click to expand it.
tests/edu/caltech/cs2/helpers/NewObjectArray.java
0 → 100644
View file @
54563d80
package
edu.caltech.cs2.helpers
;
public
class
NewObjectArray
{
public
static
int
NUM_CALLS
=
0
;
}
This diff is collapsed.
Click to expand it.
tests/edu/caltech/cs2/helpers/RuntimeCounter.java
0 → 100644
View file @
54563d80
package
edu.caltech.cs2.helpers
;
public
class
RuntimeCounter
{
public
static
int
NUM_CALLS
=
0
;
public
static
void
inc
()
{
NUM_CALLS
++;
}
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help