카페검색 본문
카페이름 본문
카페글 본문
-
Ubuntu 22.04 of kubenetes 1.27.4 구축 2024.11.04해당카페글 미리보기
calico/v3.26.1/manifests/custom-resources.yaml alias 작업(.bashrc파일) alias k='kubectl' alias ka='kubectl apply --recursive -f' alias kgp='kubectl get pods -o wide' alias kgd='kubectl get deploy -o wide' alias kgs='kubectl get service...
-
인문학개념어 사전 208/ 결정불가능성 Undecidability 決定不可能性 2024.10.28해당카페글 미리보기
나누어진다. 1.결정가능성(decidability): 형식언어 L이 잘 정리된(well-formed) 논리식이고 순서로 열거된 재귀 언어(recursive language)이면 결정가능이다. 2.준결정가능성(semidecidability): 형식언어 L이 잘 정리되었는지 불확실할 때, 임의의...
-
postgres admin sql 2024.06.25해당카페글 미리보기
Replication | {} slave | Replication | {repl} */ -- View all roles a user/role belongs to (recursively) WITH RECURSIVE cte AS ( SELECT oid, rolname FROM pg_roles WHERE rolname = 'app_level3' UNION ALL SELECT a.roleid, pg_get_userbyid(a...
-
[질문] 2024년 국가직 컴퓨터일반 20번 재귀호출 문제???? 2024.03.26해당카페글 미리보기
20. 다음 C 프로그램의 출력 결과는? [2024년 국가 9급] #include int recursive(int n) { int sum; if (n > 2) { //재귀호출 sum = recursive(n-1) + recursive(n-2); printf("%d ", sum); // 출력 : 3 5 3 8 - 중간 계산...
-
@@@@@@ 2024a ; Weekly Lec Dia [4] @@@@@ 2024.03.15해당카페글 미리보기
재귀적 방법 (Recursion) 풀려는 문제를 직접 또는 간접으로 그 문제를 이용하여 해석하는 방법이다. 예; 하노이 탑 [Algo#15] , 피보나치 수, 르 장드르 다항식, Recursive Descent Parser >>> [실습-시범] 피보나치 수[Math#28] X=10, 20, 30...