패턴매칭에 대한 질문하나 올립니다
미투리
스트링에서 패턴인 threads가 발생하는 경우를 모두 찾아 발견된 위치를 출력함.
All of the threads of a process share the same address space and other resources, such as open files. Any alteration of a resource by one thread affects the environment of the other threads in the same process.
이문장에서 패턴 threads가 2번나오는데요 제가 코딩을 했습니다
#include string.h
int StringMatch(char *str, char *pat) {
int i, j, start_s = 0;
int s = strlen(str);
int p = strlen(pat);
for(i=0; is; i++) {
for(j=0, start_s=i; jp && str[start_s]==pat[j]; start_s++, j++);
if(j == p)return i;
}
return -1;
}
int main(int argc, char* argv[]) {
char str[] = {All of the threads of a process share the same address space and other resources, such as open files. Any alteration of a resource by one thread affects the environment of the other threads in the same process.};
char pat[] = {threads};
int matched_index;
matched_index = StringMatch(str, pat);
if(matched_index -1)printf(Maching Index is %d\n, matched_index);
else printf(No Maching Pattern\n);
}
라고 쳤습니다
이걸 실행하면 한번만 찾아내면 그인덱스값을 출력하고 끈나는데요
문장 끝까지 읽은후에 index값을 출력하게 하려면 어떠케 해야하나요
p.s 자바질문에 올려서 옴김니다..;;
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2690576 | bin파일 저장 | 다올 | 2025-04-06 |
2690547 | C언어 뒷부분이라 너무 어려워서요;; 프로그래밍 하나만 부탁드립니다 (4) | 그루터기 | 2025-04-05 |
2690517 | cygwin에서요.. (1) | 엘보어 | 2025-04-05 |
2690486 | 문자열과 문자형이요 ~ | 다스리 | 2025-04-05 |
2690344 | 일본어 주석 깨짐 문제 (3) | 연하얀 | 2025-04-04 |
2690314 | 암호문 만들기 -비제네르- | 이퓨리한나 | 2025-04-03 |
2690292 | 왕초보자의 질문!!!!!! 도와주세요 (1) | 하랑 | 2025-04-03 |
2690269 | 정올 문제 인데.. 흠 | 반월 | 2025-04-03 |
2690237 | sizeof에서 short형을 썻는데 왜 4byte가 나올까요? (1) | 바나나 | 2025-04-03 |
2690183 | 문자열과 포인트 비교 (2) | 미즈 | 2025-04-02 |
2690154 | a -48 ? | 희미한눈물 | 2025-04-02 |
2690094 | 테트리스 질문요. | 지후 | 2025-04-01 |
2690066 | 문자열비교!! (1) | 매디 | 2025-04-01 |
2689888 | 좀도와주세요;; ㅠㅠ | 사람 | 2025-03-30 |
2689856 | 메뉴 그리는 거 질문 | 나라빛 | 2025-03-30 |
2689831 | c언어 프로그램 추천 | 하연 | 2025-03-30 |
2689801 | c언어 time.h에서 작동이 중지되었습니다. | 하람 | 2025-03-30 |
2689772 | 2차원 배열의 배열명에 대해서.. | 옆집꼬마야 | 2025-03-29 |
2689740 | 게임 TCP소켓 질문 (2) | 불꾼 | 2025-03-29 |
2689711 | 반복문 모래시계 | 한뎃집 | 2025-03-29 |