K

@kimjuha19

뒤로 가기 & 앞으로 가기

C
1 month ago
#include <stdio.h> #include <string.h> char back[100][50]; char forward[100][50]; char current[50] = ""; int b,f = -1; void visit(char *url){

코드 검사와 수식 계산

C
1 month ago
#include <stdio.h> #include <string.h> int stack[100]; int top = -1; void push(int x){ stack[++top] = x; }

복합 괄호 검사기

C
1 month ago
#include <stdio.h> #include <string.h> char stack[100]; int top = -1; void push(char x){ stack[++top] = x; }

경로 축약기

C
1 month ago
#include <stdio.h> #include <string.h> char* stack[100]; int top = -1; void push(char* dir) { stack[++top] = dir; }

거꾸로 해도 똑같은 '회문' 찾기

C
1 month ago
#include <stdio.h> char stack[100]; int top = -1; void push(char c) { stack[++top] = c; } char pop() {

폭발 문자열

C
1 month ago
#include <stdio.h> char stack[100]; int top = -1; void push(char x) { stack[++top] = x; } void pop() {

10 진수 → 2 진수 변환기

C
1 month ago
#include <stdio.h> int stack[100]; int top = -1; void push(int x){ stack[++top] = x; } int pop(){

웹 브라우저의 '뒤로 가기'와 '앞으로 가기'

C
2 months ago
#include <stdio.h> #include <string.h> char back[100][50]; char forward[100][50]; char current[50] = ""; int b,f = -1; void visit(char *url){

수식의 괄호 유효성 및 우선순위 검사

C
2 months ago
#include <stdio.h> #include <string.h> int stack[100]; int top = -1; void push(int x){ stack[++top] = x; }

메일 수신함

C
2 months ago
#include <stdio.h> char* stack[100]; int top = -1; void push(char* x){ stack[++top] = x; } char* pop(){

미로 찾기 경로 저장

C
2 months ago
#include <stdio.h> int stack[100]; int top = -1; void push(int x){ stack[++top] = x; } int pop(){

접시 쌓기

C
2 months ago
#include <stdio.h> int stack[100]; int top = -1; void push(int x){ stack[++top] = x; } int pop(){

올바른 괄호 짝 찾기

C
2 months ago
#include <stdio.h> #include <string.h> int stack[100]; int top = -1; void push(int x){ stack[++top] = x; }

스택 LIFO

C
2 months ago
#include <stdio.h> int stack[100]; int top = -1; void push(int x){ stack[++top] = x; } int pop(){

stack 기초

C
2 months ago
#include <stdio.h> int stack[100]; int top = -1; void push(int x){ stack[++top] = x; } int pop(){

포인터 배열을 이용한 성적 관리

C
2 months ago
#include <stdio.h> void maxnum(int score[][3],int *max,int *index){ *index = 0; *max = 0; for (int i = 0;i < 3;i++) { for (int j = 0;j < 3;j++) { if (score[i][j] > *max) { *max = score[i][j];

두 배열의 교집합 찾기

C
2 months ago
#include <stdio.h> void same(int *A, int *B){ for (int i = 0; i < 5; i++) { for (int j = 0; j < 5; j++) { if (*(B + i) == *(A + j)) { printf("%d ", *(B + i)); } } }

문자열 암호화

C
2 months ago
#include <stdio.h> void letter(char *str){ while (*str != '\0') { *str = *str + 3; str++; } } int main() {

배열 내 특정 값의 개수 찾기

C
2 months ago
#include <stdio.h> void countnum(int *arr,int target,int *result){ *result = 0; for (int i = 0;i < 10;i++) { if (*arr+i == target) { (*result)++; } }

역순 배열 복사

C
2 months ago
#include <stdio.h> void resever(int *A,int *B){ for (int i = 0;i < 5;i++) { *(B+i) = *(A + (4-i)); } } int main() { int A[5];