본문 바로가기
728x90

C언어3

[C언어] 두 디렉토리 비교 두 디렉토리를 비교하는 프로그램 입니다. 오류가 많은 코드이니 참고만 하시길.. 수정해야 할 코드는 주석처리를 했습니다. 나중에 시간날 때 다시 도전.. /** * 두 디렉토리 비교 * Test와 Real 디렉토리 비교하여 파일 유무 및 내용 확인하기 */ #include #include #include #include #define _CRT_NONSTDC_NO_WARNINGS typedef struct _finddata_t FILE_SEARCH; char* getFileList(char* path); void compare_file_name(char** arr1, char** arr2, int size1, int size2); int compare_text(char** comp1, char** comp.. 2022. 3. 28.
[C언어] 삼각형 경로 최대 합 찾기 문제를 나중에 첨부하도록 하겠습니다.. 삼각형 모양의 정수 배열을 받아 아래로 내려가는 경로에서 가장 큰 합을 찾는 문제입니다. /** * 정수 삼각형 * 삼각형 꼭대기에서 바닥까지 이어지는 경로에서 합이 가장 큰 경우 찾기 */ #include int solution(int(*arr)[5], int col, int row); int get_max(int* arr); int main() { int result = 0; result = solution((int[][5]) { {7}, { 3, 8 }, { 8, 1, 0 }, { 2, 7, 4, 4 }, { 4, 5, 2, 6, 5 } }, 5, 5); printf("%d\n", result); return 0; } int solution(int (*arr).. 2022. 3. 28.
[C언어] 소수 찾기 문제 문자열 숫자를 입력받아 해당 숫자로 만들 수 있는 소수를 찾는 문제 입니다. (아마도 프로그래머스 2 레벨 문제..maybe) /** * 소수 찾기 문제 * 문자열 numbers가 주어졌을 때, 만들 수 있는 소수 개수 찾기 */ #include #include #include #include "math.h" #define _NO_CRT_STDIO_INLINE int biggest_number(int* arr, int length); int get_Prime(int* arr, int num, int size); int main() { char str[7]; int num[7] = {0,}; int copy[7] = { 0, }; int len = 0; int total_prime; //문자열 입력받기 p.. 2022. 3. 28.
728x90
반응형