패턴매칭에 대한 질문하나 올립니다
미투리
스트링에서 패턴인 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 자바질문에 올려서 옴김니다..;;
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676005 | keybd_event 게임 제어 | 영글 | 2024-11-23 |
2675900 | 진짜기본적인질문 | 글길 | 2024-11-22 |
2675845 | 수정좀해주세요ㅠㅠㅠ | 해골 | 2024-11-21 |
2675797 | 병합 정렬 소스 코드 질문입니다. (2) | 도래솔 | 2024-11-21 |
2675771 | 큐의 활용이 정확히 어떻게 되죠?? | 해긴 | 2024-11-21 |
2675745 | 도서관리 프로그램 질문이요 | 도리도리 | 2024-11-20 |
2675717 | 2진수로 변환하는것! (3) | 동생몬 | 2024-11-20 |
2675599 | for문 짝수 출력하는 법 (5) | 널위해 | 2024-11-19 |
2675575 | Linux 게시판이 없어서.. | 첫삥 | 2024-11-19 |
2675545 | 구조체 이용할 때 함수에 자료 넘겨주는 것은 어떻게 해야 하나요? | 아연 | 2024-11-19 |
2675518 | 사각형 가로로 어떻게 반복해서 만드는지좀.. 내용 | 신당 | 2024-11-18 |
2675491 | !느낌표를 입력하는것은 어떻게합니까~~?ㅠㅠ (5) | 사지타리우스 | 2024-11-18 |
2675411 | 파일입출력으로 받아온 파일의 중복문자열을 제거한 뒤 파일출력 | 앨버트 | 2024-11-17 |
2675385 | 링크드리스트 주소록 질문드립니다. (1) | 겨루 | 2024-11-17 |
2675356 | 2진수를 10진수로 바꾸려고 하는데 막히네요.. | 풀잎 | 2024-11-17 |
2675297 | Prity 비트 발생기 | 한란 | 2024-11-16 |
2675249 | C책 좀 추천해 주세요 (2) | 딸기우유 | 2024-11-16 |
2675193 | 연습문제 17-1 질문입니다. | 한별나라 | 2024-11-15 |
2675172 | 소스점 | 아이뻐 | 2024-11-15 |
2675146 | 단순 연결 리스트인데 출력결과가 이상하게 나와요. | 찬늘봄 | 2024-11-15 |