전체 글260 (7)실습6주차_이진탐색+순차자료_[문제2] [문제2]의 PDF는 아래의 링크에 들어가면 된다.https://kojammin.tistory.com/95#include stdlib.h>#pragma warnin" data-og-host="kojammin.tistory.com" data-og-source-url="https://kojammin.tistory.com/95" data-og-url="https://kojammin.tistory.com/95" data-og-image="https://scrap.kakaocdn.net/dn/5r6eY/hyWY8ghQ2n/AVRU2nt01qRz28fHtISL7K/img.png?width=800&height=1050&face=0_0_800_1050,https://scrap.kakaocdn.net/dn/vIi4Y/h.. 2024. 9. 10. (6)실습6주차_이진탐색+순차자료_[문제1] [문제1]##이진탐색_순차자료(배열)_노트 :이론 : 시간복잡도 : O(logN) ##코드 : 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354#include stdio.h>#include stdlib.h>#pragma warning (disable : 4996) int* A = NULL;int result = -1; void BinarySearch(int* A, int start, int end, int key){ //1_ 종료조건★ start > end if (start > end)return; //2_ mid인덱스 저장 int mid = (sta.. 2024. 9. 10. (7)[Chapter12]분할정복_3_피보나치 수열(작성중) ##꽤 어려워 했던 부분 노트 사진 : ##핵심 개념(작성중):##코드 : 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485#include stdio.h>#include stdlib.h>#pragma warning (disable : 4996) typedef unsigned long ULONG; typedef struct _tagMatrix2x2 { ULONG Data[2][2];}Matrix2x2; Matrix2x2 Matrix2x2_M(Matrix2x2 A,.. 2024. 9. 7. (6)[Chapter12]분할정복_2_거듭제곱 ##이론 노트 :##코드 : 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748#include stdio.h>#include stdlib.h>#pragma warning (disable: 4996) typedef unsigned long ULONG; //Base : 밑 , Exponent : 지수ULONG Power(int Base, int Exponent) { //1_ 종료조건 (지수가 0 , 1 일 때,) if (Exponent == 0) { return 1; } else if (Exponent == 1) { return Base; } /.. 2024. 9. 6. 이전 1 ··· 40 41 42 43 44 45 46 ··· 65 다음