Data Structure(データ構造): データの保存方法と操作方法を定義した仕組み ADT(Abstract Data Type): 「何ができるか」を定義し、「どう実装するか」は問わない概念 Operation(操作): 追加・削除・参照など、データ構造が提供する機能 計算量 Big-O Notation: 入力 ...
An array collects a sequence of values of the same type. When you create an array, it has a fixed size. This means that if you create an array that holds only 3 values, you will not be able to add ...
Hello, World! 👋 I'm diving into the fascinating world of Java, and guess what? I've stumbled upon two intriguing characters: Arrays and ArrayLists. They might seem similar at first glance, but oh boy ...