c++ 클래스의 내용 오름차순 정리에 관한것 (도저히 모르겠습니

gyxor의 이미지

#include<iostream>
#include<cstring>
using namespace std;

class a{
public:

	char data[10];
	void set(char *h)
	{
		strcpy(data, h);
	}
    char *ree()
	{
		return data;
	}
	void operator = (a &st)
	{
		strcpy(data , st.data);
	}
};
class b{
	public:
	
	a base;
	int k; 
    char *re()
	{
		return base.ree();
	}
	void operator = (b &st)
	{
		base = st.base;
	}
};

int main()
{
	b eee[3];
	eee[0].base.set("c");
	eee[1].base.set("b");
	eee[2].base.set("a");
    
	for(int i=0 ; i <3 ; i++)
	{
		cout << eee[i].base.data <<endl ;
	}
	
	for(int q=0 ; q < 3 ; q++)
	{
		for(int w = 0; w <2 ; w++)
		{
			if(strcmp( eee[w].re(), eee[w+1].re() ) )
			{
			b temp;
			temp = eee[w];
			eee[w] = eee[w+1];
		    eee[w+1] = temp;
			}
		}
	}
	cout << "오름 차순으로 정리하면 \n" ;
	for(i=0; i <3 ; i++)
	{
		cout << eee[i].base.data <<endl ;
	}
	
    return 0;
}

위 내용을 출력하면 오름차순으로 정리가 되야 하는데요
클래스배열의 내용이 서로 바뀌지 않습니다.
참조에 관한 실수인것같아서 이것저것 봐꿔보고 ... 중요한 내용만
위 예제로 뽑아서 간단하게 구현해 봤는데요 마찬가지로 안되네여
무엇이 문제라서 오름차순으로 바뀌지 않는것일까요???
답변해주시면 감사드리겠습니다.

wind772의 이미지

정렬 알고리즘이 잘못된거 같습니다..^^;;

===================================================
중요한건 얼마나 아느냐가 아니라 그것에 대한 열정이다.

gyxor의 이미지

^^;

velvet의 이미지

만들어서 쓰는 것보다 훨씬 낫죠~

Life is Live

lesejong의 이미지

:cry:

if(strcmp( eee[w].re(), eee[w+1].re() ) )

이부분이 잘 못되었습니다.

strcmp는 비교하는 두 문자열이 같지 않을 경우 양수나 음수가 나오는데..
if (-1) 혹은 if ( 1 ) 모두 참값이 되죠..

위의 조건 작성시에는 if( 양수일경우에만 )을 의도하였는데,
의도와는 다른 조건 처리가 됩니다.

다음과 같이 수정해 주면 될 거 같습니다.

if(strcmp( eee[w].re(), eee[w+1].re() ) > 0 )

좀 더 고심해 보시면 해결할 수 있었던 문제였던거 같은데 아쉽네요.

gyxor의 이미지

정말 간단한 부분이었는데.. 저도 정말 아쉽네요
답변감사드려요~

wind772의 이미지

헷..^^;;
제가 소스를 잘못봤네요....-_-;; 알고리즘은 문제 없습니다...하핫..--;;
역시 눈으로 보는 것보다 한번 돌려보는 것이 낫군요....큭;;;

===================================================
중요한건 얼마나 아느냐가 아니라 그것에 대한 열정이다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.