MCPcopy Create free account

hub / github.com/Berkeley-CS61B/skeleton-sp21 / functions

Functions625 in github.com/Berkeley-CS61B/skeleton-sp21

MethodgetRecursive
(int i)
proj1ec/tester/ArrayDequeSolution.java:15
MethodhasNext
()
lab8/hashmap/ULLMap.java:130
MethodhasNext
()
lab7/bstmap/ULLMap.java:114
MethodhasNext
()
proj0/game2048/Board.java:133
MethodhashCode
()
proj0/game2048/Model.java:198
MethodhaveBirthday
Increases a dog's age and celebrates!
lab6/capers/Dog.java:49
MethodisEmpty
()
proj1ec/student/StudentArrayDeque.java:187
MethodisLowerCase
Returns true if string S consists of characters between 'a' and 'z' only. No spaces, numbers, upper-case, or any other characters are allowed.
lab8/speed/StringUtils.java:35
MethodisLowerCase
Returns true if string S consists of characters between 'a' and 'z' only. No spaces, numbers, upper-case, or any other characters are allowed.
lab7/bstmap/StringUtils.java:34
MethoditerativeSize
Return the size of the list using no recursion!
lab2/IntList/IntList.java:21
Methoditerator
()
lab8/hashmap/ULLMap.java:69
Methoditerator
()
lab7/bstmap/ULLMap.java:63
Methoditerator
()
proj0/game2048/Board.java:147
Methoditerator
()
proj0/game2048/Board.java:152
MethodkeyPressed
Respond to the user pressing key E by queuing the key on our queue of pending keys.
proj0/game2048/GUI.java:59
MethodkeySet
()
lab8/hashmap/ULLMap.java:158
MethodkeySet
Returns a Set view of the keys contained in this map.
lab8/hashmap/Map61B.java:33
MethodkeySet
()
lab7/bstmap/ULLMap.java:141
Methodmain
Requests user input and performs tests of three different set implementations. ARGS is unused.
lab8/speed/BucketsSpeedTest.java:23
Methodmain
Requests user input and performs tests of three different set implementations. ARGS is unused.
lab8/speed/InsertInOrderSpeedTest.java:23
Methodmain
Requests user input and performs tests of three different set implementations. ARGS is unused.
lab8/speed/InsertRandomSpeedTest.java:21
Methodmain
Deserialize and apply dump to the contents of each of the files in FILES.
proj2/gitlet/DumpObj.java:34
Methodmain
Usage: java gitlet.Main ARGS, where ARGS contains <COMMAND> <OPERAND1> <OPERAND2> ...
proj2/gitlet/Main.java:11
Methodmain
(String[] args)
proj3/byow/lab13/MemoryGame.java:31
Methodmain
(String[] args)
proj3/byow/Networking/BYOWClient.java:125
Methodmain
(String[] args)
proj3/byow/lab12/BoringWorldDemo.java:15
Methodmain
(String[] args)
proj3/byow/lab12/RandomWorldDemo.java:47
Methodmain
(String[] args)
proj3/byow/Core/Main.java:8
Methodmain
(String[] args)
proj3/byow/InputDemo/DemoInputSource.java:13
Methodmain
(String[] args)
lab2/DebugExercise/DebugExercise1.java:14
Methodmain
(String[] args)
lab2/DebugExercise/DebugExercise2.java:78
Methodmain
Driver Code
lab2/IntList/Primes.java:71
Methodmain
(String[] args)
lab1/GetEnvironmentVariables.java:14
Methodmain
(String[] args)
lab1/Collatz.java:17
Methodmain
(String[] args)
lab1/HelloWorld.java:2
Methodmain
(String[] args)
lab1/CheckLabConfig.java:73
Methodmain
(String[] args)
lab1/HelloNumbers.java:2
Methodmain
(String[] args)
proj1/gh2/TTFAF.java:16
Methodmain
(String[] args)
proj1/gh2/GuitarHeroLite.java:12
Methodmain
Requests user input and performs tests of three different set implementations. ARGS is unused.
lab7/bstmap/InsertInOrderSpeedTest.java:22
Methodmain
Requests user input and performs tests of three different set implementations. ARGS is unused.
lab7/bstmap/InsertRandomSpeedTest.java:18
Methodmain
(String [] args)
lab4/flik/HorribleSteve.java:4
Methodmain
The main program. ARGS may contain the options --seed=NUM, (random seed); --log (record moves and random tiles selected.).
proj0/game2048/Main.java:20
Methodmain
(String[] args)
lab3/timingtest/SLList.java:75
Methodmain
(String[] args)
lab3/timingtest/StopwatchDemo.java:20
Methodmain
(String[] args)
lab3/timingtest/TimeAList.java:20
Methodmain
(String[] args)
lab3/timingtest/TimeSLList.java:20
Methodmain
This main method is optional.
proj1ec/tester/AssertEqualsStringDemo.java:18
Methodmain
(String[] args)
proj1ec/tester/StudentArrayDequeLauncher.java:10
Methodmain
Runs one of three commands: story [text] -- Appends "text" + a newline to a story file in the .capers directory. Additionally, prints
lab6/capers/Main.java:39
MethodmakeDog
Creates and persistently saves a dog using the first three non-command arguments of args (name, breed, age). Also prints out the dog's information usi
lab6/capers/CapersRepository.java:51
MethodmarkEnd
Indicate that "GAME OVER" label should be displayed.
proj0/game2048/BoardWidget.java:109
Methodmessage
Print a message composed from MSG and ARGS as for the String.format method, followed by a newline.
proj2/gitlet/Utils.java:235
Methodmove
Return the result of moving me to (COL, ROW).
proj0/game2048/Tile.java:45
Methodmove
Places the Tile TILE at column COL, row ROW where COL and ROW are treated as coordinates with respect to the current viewPerspective. Returns whether
proj0/game2048/Board.java:88
MethodmultipleParamTest
()
proj1/deque/LinkedListDequeTest.java:83
MethodnewGame
Response to "New Game" button click.
proj0/game2048/GUI.java:52
Methodnext
()
proj0/game2048/Board.java:137
Methodopposite
Returns the side opposite of side S.
proj0/game2048/Side.java:42
MethodpaintComponent
(Graphics2D g)
proj0/game2048/BoardWidget.java:114
Methodpareto
Returns a random real number from the standard Pareto distribution. @return a random real number from the standard Pareto distribution
proj3/byow/Core/RandomUtils.java:216
Methodpermutation
Returns a uniformly random permutation of <em>n</em> elements. @param n number of elements @return an array of length {@code n} that is a uniformly r
proj3/byow/Core/RandomUtils.java:487
MethodplainFilenamesIn
Returns a list of the names of all plain files in the directory DIR, in lexicographic order as Java Strings. Returns null if DIR does not denote a
proj2/gitlet/Utils.java:174
Methodpoisson
Returns a random integer from a Poisson distribution with mean &lambda;. @param lambda the mean of the Poisson distribution @return a random integer
proj3/byow/Core/RandomUtils.java:192
MethodpossibleNextInput
()
proj3/byow/InputDemo/KeyboardInputSource.java:26
MethodpossibleNextInput
()
proj3/byow/InputDemo/RandomInputSource.java:22
MethodpossibleNextInput
()
proj3/byow/InputDemo/StringInputDevice.java:21
MethodprintDeque
()
proj1ec/student/Deque.java:16
MethodprintDeque
()
proj1ec/tester/ArrayDequeSolution.java:11
MethodprintTimingTable
(AList<Integer> Ns, AList<Double> times, AList<Integer> opCounts)
lab3/timingtest/TimeAList.java:8
MethodprintTimingTable
(AList<Integer> Ns, AList<Double> times, AList<Integer> opCounts)
lab3/timingtest/TimeSLList.java:8
Methodput
Inserts the key-value pair of KEY and VALUE into this dictionary, replacing the previous value associated to KEY, if any.
lab8/hashmap/ULLMap.java:43
Methodput
Associates the specified value with the specified key in this map. If the map previously contained a mapping for the key, the old value is replaced.
lab8/hashmap/Map61B.java:30
Methodput
Inserts the key-value pair of KEY and VALUE into this dictionary, replacing the previous value associated to KEY, if any.
lab7/bstmap/ULLMap.java:40
Methodquit
Response to "Quit" button click.
proj0/game2048/GUI.java:46
MethodreadContentsAsString
Return the entire contents of FILE as a String. FILE must be a normal file. Throws IllegalArgumentException in case of problems.
proj2/gitlet/Utils.java:110
MethodreadContentsAsString
Return the entire contents of FILE as a String. FILE must be a normal file. Throws IllegalArgumentException in case of problems.
lab6/capers/Utils.java:46
MethodreadObject
Return an object of type T read from FILE, casting it to EXPECTEDCLASS. Throws IllegalArgumentException in case of problems.
lab6/capers/Utils.java:77
Methodremove
(K key)
lab8/hashmap/ULLMap.java:148
Methodremove
Removes the mapping for the specified key from this map if present. Not required for Lab 8. If you don't implement this, throw an UnsupportedOperation
lab8/hashmap/Map61B.java:40
Methodremove
(K key)
lab7/bstmap/ULLMap.java:131
MethodremoveEmptyTest
()
proj1/deque/LinkedListDequeTest.java:60
MethodremoveFirst
()
proj1ec/student/StudentArrayDeque.java:55
MethodremoveFirst
()
proj1ec/tester/ArrayDequeSolution.java:19
MethodremoveLast
Deletes item from back of the list and returns deleted item.
lab3/randomizedtest/BuggyAList.java:61
MethodremoveLast
Deletes item from back of the list and returns deleted item.
lab3/randomizedtest/AListNoResizing.java:49
MethodremoveLast
Deletes item from back of the list and returns deleted item.
lab3/timingtest/AList.java:60
MethodremoveLast
()
proj1ec/student/StudentArrayDeque.java:102
MethodremoveLast
()
proj1ec/tester/ArrayDequeSolution.java:27
MethodrestrictedDelete
Deletes FILE if it exists and is not a directory. Returns true if FILE was deleted, and false otherwise. Refuses to delete FILE and throws Illegal
proj2/gitlet/Utils.java:72
MethodsanityClearTest
()
lab8/hashmap/TestMyHashMapBuckets.java:42
MethodsanityClearTest
()
lab7/bstmap/TestBSTMap.java:22
MethodsanityContainsKeyTest
()
lab8/hashmap/TestMyHashMapBuckets.java:52
MethodsanityContainsKeyTest
()
lab7/bstmap/TestBSTMap.java:40
MethodsanityGenericsTest
()
lab8/hashmap/TestMyHashMapBuckets.java:13
MethodsanityGenericsTest
()
lab8/hashmap/TestMyHashMap.java:16
MethodsanityGenericsTest
()
lab7/bstmap/TestBSTMap.java:9
MethodsanityGetTest
()
lab8/hashmap/TestMyHashMapBuckets.java:62
MethodsanityGetTest
()
lab7/bstmap/TestBSTMap.java:49
MethodsanityKeySetTest
()
lab8/hashmap/TestMyHashMapBuckets.java:91
← previousnext →401–500 of 625, ranked by callers