- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 프로그래머스
- 백준
- til
- Java
- 코딩테스트
- firebase google
- 안드로이드
- 연결리스트
- C++
- Firebase
- 구글 로그인
- 비주얼 베이직
- 컴퓨터공학과
- 파이썬
- android studio
- 공유대학
- 정렬
- 프로그래밍 입문
- 자료구조
- 안드로이드 스튜디오
- 동적할당
- 알고리즘
- python
- sql
- C언어
- 배열
- 로그인
- 자바
- oauth
Archives
코딩하는 해달이
[자료구조] 자료구조 수업 과제 1 본문
자료구조 수업때 과제를 하며 공부한 기록을 남긴다.
[과제 1]
1.배열 활용하기
공백문자들이 문장의 앞, 중간, 뒤에 포함되어있는 스트링이 입력될 때 스트링의 문자 개 수 를 계산하여 다음과 같이 출력하라. (단, 단어 사이에 두개이상의 연속된 공백 문자들은 하나의 공백 문자로 대체)
*출력결과
> hello
hello: 5
> welcome to the class
welcome to the class: 20
> programming is fun, right?
programming is fun, right?
언어는 자신이 원하는 언어로 작성해도 좋습니다.
=================================================================================
나는 c언어를 이용해서 과제를 해결해보았다.
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main() {
while (1) {
char a[100] = "";
char str[100] = "";
int size = 1;
int pull = 0;
gets_s(str, sizeof(str));
a[0] = str[0];
for (int i = 1; str[i] != '\0'; i++) {
if (str[i] == ' ') {
if (str[i - 1] == ' ') {
pull++;
continue;
}
else {
size++;
a[i - pull] = str[i];
}
}
else {
size++;
a[i - pull] = str[i];
}
}
if (a[size - 1] == ' ') {
a[size - 1] = '\0';
size--;
}
if (a[0] == ' ') {
for (int i = 1; i < size; i++) {
a[i - 1] = a[i];
}
a[size - 1] = '\0';
size--;
}
printf("%s: %d\n", a, size);
}
return 0;
}
[출력결과]
반응형
'개인 공부 > 알고리즘&자료구조' 카테고리의 다른 글
[알고리즘] 임의의 좌표가 원을 기준으로 어디에 위치하고 있는지 확인 (0) | 2023.02.24 |
---|---|
[자료구조] 자료구조 수업 과제 2 (0) | 2022.11.19 |
[자료구조] 스택(Stack)이란? (2) | 2022.11.09 |
[자료구조] 연결 리스트(Linked List)란? (2) | 2022.11.08 |
[알고리즘] 유클리드 호제법 (0) | 2022.07.26 |
Comments