빅오를 구하고 싶어요~
애기
PrintLot( List L ,List X)
이 함수의 빅오를 구하는 문제입니다.
함수가 리스트List L 과 List X가 있으면
List X의 삽입데이타 값에 요소가 1,3,4,6이라면
List L의 첫번쨰 , 세번쨰, 네번쨰, 여섯번째 위치의 요소를 출력해주는 함수입니다.
이 함수의 빅오를 구하는 문제인데
while 안에 for 문이 있으니 여기 빅오가 O(n제곱) 이렇게 되는건가요??
#include stdio.h
#include stdlib.h
struct Node
{
int Element;
struct Node *Next;
};
typedef struct Node *PtrToNode;
typedef PtrToNode List;
typedef PtrToNode Position;
int IsEmpty( List L );
int IsLast( Position P, List L );
Position Find ( int X, List L );
void Delete( int X, List L );
Position FindPrevious( int X, List L );
void Insert( int X, List L, Position P );
void DeleteList( List L );
void PrintList( List L );
void PrintLots( List L, List X );
int main(void)
{
List Header, Header2, L, X;
Header = ( List )malloc ( sizeof ( struct Node) );
Header2 = ( List )malloc ( sizeof ( struct Node) );
Header-Next = NULL;
Header2-Next = NULL;
L = Header;
X = Header2;
Insert( 7, L, L );
Insert( 10, L, Find( 7, L ) );
Insert( 28, L , Find( 10, L ) );
Insert( 5, L , Find( 10, L ) );
Insert( 4, L , Find( 10, L ) );
Insert( 3, L , Find( 10, L ) );
Insert( 9, L , Find( 10, L ) );
Insert( 20, L , Find( 10, L ) );
printf(리스트 L의 요소 : );
PrintList( L );
Insert( 1, X, X );
Insert( 3, X, Find( 1, X ) );
Insert( 4, X, Find( 3, X ) );
Insert( 6, X, Find( 4, X ) );printf(리스트 X의 요소 : );
PrintList( X );
printf(리스트 X의 요소에 위치하는 리스트 L의 요소 : );
PrintLots( L , X );
return 0;
}
int IsEmpty( List L )
{
return L-Next == NULL;
}
int IsLast( Position P, List L )
{
return P-Next == NULL;
}
Position Find(int X, List L )
{
Position P;
P = L-Next;
while( P != NULL && P-Element !=X )
P = P-Next;
return P;
}
void Delete( int X, List L)
{
Position P, TmpCell;
P = FindPrevious( X, L );
if( !IsLast( P, L) )
{
TmpCell = P-Next;
P-Next = TmpCell-Next;
free( TmpCell );
}
}
Position FindPrevious( int X, List L )
{
Position P;
P = L;
while( P-Next != NULL && P-Next-Element !=X )
P = P-Next;
return P;
}
void Insert( int X, List L, Position P )
{
Position TmpCell;
TmpCell = malloc( sizeof( struct Node ) );
if( TmpCell == NULL )
printf( Out of space !!!);
TmpCell-Element = X;
TmpCell-Next = P-Next;
P-Next = TmpCell;
}
void DeleteList( List L )
{
Position P, Temp;
P = L-Next;
L-Next = NULL;
while( P != NULL )
{
Temp = P-Next;
free( P );
P = Temp;
}
}
void PrintList( List L )
{
Position P;
P = L;
while ( P-Next )
{
printf( |%d|, P-Next-Element);
P = P-Next;
}
printf(\n);
}
void PrintLots( List L, List X )
{
Position L2, X2;
int Data=0, i;
X2 = X;
while( X2-Next )
{
Data = X2-Next-Element;
L2 = L;
//printf(Data의 값 : %d = , X2-Next-Element);
//printf(실제요소의 처음값 : %d\n, L2-Next-Element);
for(i=1; iData; i++)
{
L2 = L2-Next;
}
printf( |%d|, L2-Next-Element);
X2 = X2-Next;
}
printf(\n);
}
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
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 |