#include
#include
struct node {
int value;
struct node* next;
};
// 앞에 노드 추가
struct node* add(struct node* head, int value) {
struct node* new_node = (struct node*)malloc(sizeof(struct node));
new_node->value = value;
new_node->next = head;
return new_node;
}
struct node *func(struct node *head, int x){
struct node *prev;
struct node * cur = head;
for(cur; cur->vaule != x; cur = cur->next){
prev = cur;
prev->next = cur->next
}
if(){}
cur->next = head
return cur;
}
int main() {
struct node* head = NULL;
for (int i = 1; i next) {
printf("%d", cur->value);
}
return 0;
}
이게 오늘 2025년 5점짜리 문제
이건 2021년 5점짜리 문제
정보처리기사 난이도 정상화 씨게 들어감
지나가던 전기기사 인데요...
그냥 지나갈게요
전기기사도 난이도 조졌다는디 ㅋ
이제 자바인력양성시험이 아니네
어지럽다
이건 그나마 차근차근 풀면 풀만했음 근데..
토익마냥 합격율 올라가니간 문제 난이도 겁나 올린거임?
C++로 바꼈네 의미 요즘 시대에