독도 광고 모금 캠페인

특별한딸기이야기

블로그 이미지
딸기다운 사이버 공간을 만들고 싶어하는 특별한 딸기의 블로그입니다.
by 특별한녀석
  • 7883Total hit
  • 12Today hit
  • 35Yesterday hit

최근에 달린 레몬펜 쪽지

Statistics Graph

'2008/05/24'에 해당되는 글 1건

  1. 2008/05/24
    자바 코드(병합 프로그램_선택 정렬 추가)

package com.tistory.special0strawberry;

public class Run
{
 // 메인 함수
 public static void main(String[] args)
 {
  IntArray a, b, c;
  Sort s = new Sort();
  Add add = new Add();
 
  a = new IntArray();
  b = new IntArray();
 
  System.out.print("첫번째 ");
  a.UserInput();
  s.BubbleSort(a);
  System.out.print("\n첫번째 ");
  a.PrintArray();
 
  System.out.print("\n두번째 ");
  b.UserInput();
  s.SelectSort(b);
  System.out.print("\n두번째 ");
  b.PrintArray();
 
  c = add.ArrayAdd(a, b);
  s.SelectSort(c);
  System.out.print("\n세번째 ");
  c.PrintArray();
 }
}

package com.tistory.special0strawberry;

public class Sort
{
 // 입력값 : 정렬할 IntArray 포인터
 // 버블 정렬을 통해 배열을 정렬한다.
 public void BubbleSort(IntArray a)
 {
  int temp, temp_1, temp_2;
 
  for(temp = 0; temp < a.GetArrayLength() - 1; temp++)
  {
   for(temp_1 = 0; temp_1 < a.GetArrayLength() - temp - 1; temp_1++)
   {
    if(a.GetArrayValue(temp_1) > a.GetArrayValue(temp_1 + 1))
    {
     temp_2 = a.GetArrayValue(temp_1 + 1);
     a.SetArrayValue(temp_1 + 1, a.GetArrayValue(temp_1));
     a.SetArrayValue(temp_1, temp_2);
    }
   }
  }
 }
 
 // 입력값 : 정렬할 IntArray 포인터
 // 선택 정렬을 통해 배열을 정렬한다.
 public void SelectSort(IntArray i)
 {
  int temp, choice, temp_1, temp_2;
 
  for(temp = 0; temp < i.GetArrayLength(); temp++)
  {
   choice = temp;
   for(temp_1 = temp; temp_1 < i.GetArrayLength(); temp_1++)
   {
    if(i.GetArrayValue(temp_1) < i.GetArrayValue(choice))
    {
     choice = temp_1;
    }
   }
   temp_2 = i.GetArrayValue(choice);
   i.SetArrayValue(choice, i.GetArrayValue(temp));
   i.SetArrayValue(temp, temp_2);
  }
 }
}

'딸기 공부방 > JAVA' 카테고리의 다른 글

scjp 1.4 지료  (0) 2008/07/03
자바 코드(병합 프로그램_선택 정렬 추가)  (0) 2008/05/24
자바 코드(병합 프로그램)  (0) 2008/05/22
자바 코드(숫자 바꾸기)  (0) 2008/05/22
TRACKBACK 1 AND COMMENT 0

ARTICLE CATEGORY

딸기 이야기 (241)
딸기의 혼잣말 (55)
딸기 호감 사이트 (2)
딸기의 사진 (16)
딸기 리뷰 (15)
딸기 공부방 (105)
딸기 자료실 (48)

CALENDAR

«   2008/05   »
        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 31

ARCHIVE