IT 취미생활.  
Front Page
Tag | Location | Media | Guestbook | Admin   
 
Image Rotate를 위한 간단한 코드
다들 업무로 인해서 머리가 잘 안돌아 가나 봅니다.
간단하게 prototype를 작성 해보았습니다.

O(N^2) 수행 시간입니다. 최적화가 필요하심 ~


// Bloodshed Dev-C++ is a full-featured Integrated Development Environment (IDE)
// for the C/C++ programming language. It uses Mingw port of GCC (GNU Compiler Collection) as
// it's compiler. Dev-C++ can also be used in combination with Cygwin or any other GCC based compiler.


#include <cstdlib>
#include <iostream>

using namespace std;


int Src[3][5] = {
   {1, 2, 3, 4, 5},
   {6, 7, 8, 9, 10},
   {11, 12, 13, 14, 15} };
               
int dest[5][3] = { 0 };

int main(int argc, char *argv[])
{
   int k = 0;
   cout << "ORG buffer\n";
   for( int i = 0; i < 3; i ++ )
   {
        for( int j = 0, k = 4 ; j < 5; j++,k--)
        {
            dest[k][i] = Src[i][j];
            cout <<  dest[k][i] << "  ";
         }
         cout  << " " << "\n";
   }
   cout << "\n" << "\n";
   
   // roniekang ---- display
   cout << "Result \n";    
   for( int i = 0; i < 5; i ++ )
   {
       for(int j = 0; j < 3; j++)
       {
               cout <<  dest[i][j] << "  ";
       }
       cout << " " << "\n";              
   }
   
   system("PAUSE");
   return EXIT_SUCCESS;
}

이미지를 로테이트 시키기 위해서 잠시 작성..


BLOG main image
취미생활
 Notice
 Category
분류 전체보기 (191)
매일매일갱생 (83)
서버개발 (1)
임베디드개발 (12)
Programming (80)
Personal Projects (6)
유용한 프로그램 (0)
 TAGS
It C++ warning M480 Windows Mobile6.0 English 미라지폰 Error Case spam mail DirectShow Dshow VC++ 1seg 출장 Algorithm ISDB-T debugging isdbt MP3 project 티스토리 초대장 DVB 군대 서태지 벨소리 변경 english email 티스토리초대 C 퇴사 영어 이메일 음식 Java 개발자 Brazil 알고리즘 Linux Wince5.0 DVB-T Debug
 Calendar
«   2025/01   »
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
 Recent Entries
 Recent Comments
 Recent Trackbacks
 Archive
 Link Site
zextor
괴짜 프로그래머의 일상사~@@
Gag & Peace, and more..
Kazakhstan Almaty.......
Min-A
Sadgarret
Steve Yoon's log
가슴 뛰는 삶을 살아라
오스틴 파워
GUI sin
melanie parker_Lady
제레미의 TV 2.0 이야기..
 Visitor Statistics
Total :
Today :
Yesterday :
rss