|
#include <iostream>
#include <conio.h>
using namespace std;
void merge(const int *A, const int *B, int *C){
int i, j, count = 0;
for(i=0, j=0; i<5 && j<5; count++){
if(A[i] <= B[j])
C[count] = A[i++];
else
C[count] = B[j++];
}
while(i < 5)
C[coun
|
- 페이지 21페이지
- 가격 3,000원
- 등록일 2011.03.16
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|