목록Computer Science/Comp sci_courses (19)
Code&Data Insights
- Probability (Number of Cases) - 어떤 일이 일어날 수 있는 모든 경우의 수 (Probability is the branch of mathematics concerning numerical descriptions of how likely an event is to occur, or how likely it is that a proposition is true. ) - 합의 법칙 : 사건 A 또는 사건 B가 일어날 경우의 수 => n(AUB) = n(A) + n(B) - n(A∩B) - 곱의 법칙 : 사건 A와 사건 B가 동시에 일어날 경우의 수 n(AXB) = n(A) X n(B) (1) - 합의 법칙 // 두 개..
자바에서 집합을 사용하기 위한 방법에는 대표적으로 HashSet과 ArrayList를 사용하는 것이 있다. 1. HashSet - 자바에서 Hashset 클래스는 저장을 위한 해시 테이블을 생성하기 위해 사용된다 ( Java HashSet class is used to create a collection that uses a hash table for storage.) - 추상클래스인 AbstractSet class를 상속하고 Set interface를 implements 한다. - HashSet은 Set의 파생클래스로, Set은 중복된 원소를 허용하지 않는 집합이다. * HashSet은 순서,중복을 고려하지 X (1) 집합 사용하기 - HashSet // import java.u..
Problem ) Verify that the relation, two ordered pairs(a,b) and (c,d) are equivalent if ad= bc, is an equivalence relation on the set S of all ordered pairs (a, b) of integers with b̸=0. --> (1) reflexive : For all (a, b) ∈ X, ab = ba. This is clearly true. Hence R is reflexive. (2) symmetric : For all (a,b),(c,d) ∈ X, suppose (a,b)R(c,d). Then ad = bc if and only if cb = ..