@akaDurga
Nothing here yet.
Nothing here yet.
Oct 2, 2024 · 1 min read · Quick sort Algorithm : Time Complexity : O(n*log(n)) Space Complexity : O(1) Not a stable algorithm, Relative ordering of the elements is not guaranteed. import java.util.*; public class Main { public static void main(String[] args) { int[...
Join discussionOct 2, 2024 · 1 min read · Arrays int[] arr = new int[10]; System.out.println(arr.length); int[][] arr2 = new int[10][10]; System.out.println(arr2.length); System.out.println(arr2[0].length); Integer[] referenceArray = new Inte...
Join discussion