본문 바로가기

공부방

Algorithm,Computer's Solution Procedure, Hierarchy Of Data Organization


 

[1] Algorithm

All the tasks that can be carried out by a computer can be stated as algorithm. Once an algorithm has been designed, it is coded in a programming language, and the program is executed by a computer. An Algorithm is a finite set of instructions that specify a sequence of operations to be carried in order to solve a specific problem or class of problems. In other words, an algorithm is a recipe for solving the problem. An Algorithm may be presented on several levels of detail. The hardware of a computer can only obey instructions if they are expressed in the machine language of the computer.

➡[1] 연산법

컴퓨터에의해 실행될수 있는 모든 업무는 알고리즘에 의해 정해질 수 있다. 예전에 알고리즘이 고안된 적이 있는데, 이것은 프로그래밍 언어로 코드화되었으며, 이 프로그램은 컴퓨터에 의해 실행되었다. 알고리즘은 특정한 문제나 문제꾸러미를 풀기위해 실행되는 작동의 연속을 상술한 명령어의 제한된 집합이다. 다시말해 알고리즘은 문제를 풀기위한 방법이다. 알고리즘은 세부적인  몇몇 단계로 표현될수 있다. 컴퓨터의 하드웨어는 컴퓨터의 기계어로 표현된 명령에만 따른다.


[2] Computer's Solution Procedure

A Computer is not an independent problem solver. However, owing to the speed with which it can retrieve and manipulate large volumes of data, the computer is an essential aid in the problem-solving process. The solution procedure is presented to a computer in the form of a program - a list of the actions required to arrive at the results.

➡[2] 컴퓨터의 해결 절차

컴퓨터는 독립적인 문제풀이기가 아니다. 하지만 많은량의 데이터를 다루고 검색할수 있는 속도 때문에, 컴퓨터는 문제를 푸는 과정에서 매우 필수적인 요소다. 해결절차는 프로그램의 형식으로 컴퓨터에 나타내어진다. 작업목록은 결과물을 필요로 한다.


[3] Hierarchy Of Data Organization

The six levels of the hierarchy of data organization are bit, character(or byte), field, record, file and data base. The first level is transparent to the programmer and end user, but the other five are integral to the design of any information processing activity. A string of bits is combined to form a character. Characters are combined to represent the content of fields-data items. Related fields are combined to form records. Records with the same data elements combine to form a file. The data base is the company's data resource for all information systems.

➡[3] 데이터조직의 계층

데이터조직의 6계층은 bit, character, field, record, file그리고 database다. 첫 번째 레벨은 프로그래머나 최종사용자에게 명확하다. 하지만 다른 5개는 어떠한 정보처리활동의 고안에 있어서 필수적이다. bit의 문자열은 character가 된다. 캐릭터는 field-data의 내용을 나타내기 위해 조합된다. 연관된 field들은 레코드가 된다. 같은 정보 요소의 record들은 file을 구성한다. data base는 모든 정보체계의 근원이다.



translated by eat_star (http://playwithyou.tistory.com/)