数据结构 外文翻译 外文文献 英文文献

数据结构 外文翻译 外文文献 英文文献
数据结构 外文翻译 外文文献 英文文献

外文翻译原文

Computer programming data structure is an important theoretical basis for the design, it is not only the core curriculum of computer disciplines, and has become a popular elective course other Polytechnic professional, so studied this course well and studied computer are closely related.

一、the concept of data structure

Computer data structure is the foundation of science and technology professional classes, is the essential core curriculum. All computer system software and application software to use various types of data structures. Therefore, if we want to make better use of computers to solve practical problems, only to several computer programming languages are difficult to cope with the many complex issues. To the effective use of computers, give full play to computer performance, but also must learn and master relevant knowledge of data structure. A solid foundation of "data structure"for learning other computer professional courses, such as operating systems, translation theory, database management systems, software engineering, artificial intelligence, etc. are very useful.

二、why should learn from data structure?

In the early development of computers, the use of computer designed primarily

to deal with terms. When we use the computer to solve a specific problem, the following general needs through several steps : the first is a specific problem of appropriate abstract mathematical models, and then design or choose a mathematical model of the algorithm,the final procedures for debugging, testing, until they have the ultimate answer.

Since then the object is INTEGER, REAL, BOOLEAN, the procedures of the main designers of energy is focused on programming skills, without attention to the data structure. With the expansion of computer applications and development of software and hardware, the issue of non-terms increasing importance. According to statistics, Now dealing with the issue of non-occupancy of more than 90% of the machine time. Such issues involve more complex data structure, the relationships

between data elements generally can not be described by mathematical formula. Therefore, the key to solving such problems is no longer mathematical analysis and calculations, but to devise appropriate data structure, can effectively address the problem.

Description of the terms of such non-mathematical model is not a mathematical equation, but such as tables, trees, such as map data structure. Therefore, it can be said that data structure courses primarily designed to study the issue of non-value calculation procedures as a computer operations and the relationship between objects and their operating disciplines.

The purpose of the study is to understand the structure of data for computer processing of the identity object to the practical problems involved in dealing with that subject at the computer out and deal with them. At the same time, through training algorithms to improve the thinking ability of students through procedures designed to promote student skills integrated applications and professional qualities.

三、the concepts and terminology

Systematic study of knowledge in the data structure before some of the basic concepts and terminology to give a precise meaning.

Data (Data) is the information carrier, it could be computer identification, storage and processing. It is the computer processing of raw materials, a variety of data processing applications. Computer science, computer processing is the so-called data objects, which can be numerical data can be non - numerical data. Numerical data are integer, the actual number or plural, mainly for engineering computing, scientific computing and commercial processing; Non - numerical data, including characters, text, graphics, images, voice and so on.

Data elements (Data Element) is the basic unit of data. In different conditions, data elements can be called elements, nodes, the peak, recording. For example, students information retrieval system table information, a record high, 8 Queen's issue of a state tree, teaching programming issues such as a peak, known as a data element. Sometimes, a data from a number of data elements (Data Item), for example, the student information management system students each data element table is a student

record. It includes students of the school, name, sex, nationality, date of birth, performance data items. These data items can be divided into two types : one called early such as student gender, origin, etc., these data were no longer divided in data processing, the smallest units; Another called portfolio, the performance of students who, it can be divided into mathematics, physics, chemistry and other smaller items. Normally, in addressing the question of the practical application of each student is recorded as a basic unit for a visit and treatment.

Data objects (Data Object) or data element type (Data Element Class) is the nature of the data elements with the same pool. In a specific issue, the data elements have the same nature (not necessarily equal value elements), belonging to the same data objects (data element type), the data element is an example of such data elements. For example, traffic information systems in the transportation network, is a culmination of all the data elements category, peak a and B each represent an urban middle is the data elements of the two types of examples of the value of their data elements a and B respectively.

Data structure (Data Structure) refers to the mutual relationship that exists between one or more data elements together. In any case, between data elements will not be isolated in between them exist in one way or another, such as the relationship between the data element structure. According to the data elements of the relationship between different characteristics, usually have the following four basic categories of the structure :

1 assembly structures. In the assembly structure, the relationship between data elements is "belonging to the same pool." Assembly elements relations is a very loose structure.

2 linear structures. The structure of the data elements exist between one-to-one relationship.

3 tree structure. The structure of the data elements exist between hierarchical relationship.

4graphics structure. The structure of the data elements of the relationship that existed between Duoduiduo, graphics structure also known as network structure.

C++Builder programming experience

一、Database programming

And the use of Delphi, Borland C++Builder BDE (Borland Database Engine) database interface, in particular its use BDE Administrator unified management database alias, the database operation has nothing to do with the location of the database documents, thus enabling database development easier operation. But in a database application procedures at the same time we have to "release" BDE, the database for some simple procedures may BDE than our own design procedures big, but as the use of BDE InstallShield, add database alias is likely allocation failure. Therefore, we can use the following methods : still in the design stage procedure using BDE alias management database for debugging, but in procedures substantially (as in the main Chuangti OnCreate event processing function) to Table components DatabaseName attributes, such as the use of similar phrases as follows :

Table1->DatabaseName = ExtractFilePath (Application->ExeName); Or

Table1->DatabaseName = ExtractFilePath (Application->ExeName+ "DB");

Thus, no impact on the debugging phase, will be issued if the application procedures Table1 document on the use of databases or their current catalogue "DB" virus, database procedures can be normal operation. You can even be a database to catalogue the documents in the form of character string Register (installed in the installation process), then the procedure in the acquisition of substantially from the catalogue of payrolls, Fuzhi DatabaseName attribute to be. Anyway, you do not need to install relatively large BDE forced users.

二、the Registry visit

As in the design process we often required 9x/NT Windows Registry information visit, such as retrieval of information procedures, preservation of information. Register write a subroutine to visit necessary. When the Register to visit, the library will be directly available without always some duplication operation. The following can be used to access cosmetic Licheng, the character string type Jianzhi, and the retrieval of failure to return default value Default.

#include < Registry.hpp >

int ReadIntFromReg(HKEY Root, AnsiString Key, AnsiString KeyName, int Default) {

int KeyValue;

TRegistry *Registry = new TRegistry();

Registry->RootKey = Root;

Registry->OpenKey(Key, false);

try {

KeyValue = Registry->ReadInteger(KeyName);

}

catch(...) {

KeyValue = Default;

}

delete Registry;

return KeyValue;

}

void SaveIntToReg(HKEY Root, AnsiString Key, AnsiString KeyName, int KeyValue) {

TRegistry *Registry = new TRegistry();

Registry->RootKey = Root;

Registry->OpenKey(Key, true);

Registry->WriteInteger(KeyName, KeyValue);

delete Registry;

}

char *ReadStringFromReg(HKEY Root, AnsiString Key, AnsiString KeyName, char *Default) {

AnsiString KeyValue;

TRegistry *Registry = new TRegistry();

Registry->RootKey = Root;

Registry->OpenKey(Key, false);

try {

KeyValue = Registry->ReadString(KeyName);

}

catch(...) {

KeyValue = (AnsiString)Default;

}

delete Registry;

return KeyValue.c_str();

}

void SaveStringToReg(HKEY Root, AnsiString Key,

AnsiString KeyName, char *KeyValue) {

TRegistry *Registry = new TRegistry();

Registry->RootKey = Root;

Registry->OpenKey(Key, true);

Registry->WriteString(KeyName, (AnsiString)KeyValue);

delete Registry;

}

We may use the following access methods (to Windows wallpaper documents) : AnsiString WallPaperFileName =

ReadStringFromReg(HKEY_CURRENT_USER,

"\\Control Panel\\Desktop", "Wallpaper", "");

三、show / hide icons task column

Standard Windows applications generally operating in the mission mandate column on the chart shows, users can directly use the mouse clicking column logo for the mission task cut over, but some applications do not use task column signs, such as the typical Office tools, There are also procedures that can be shown or hidden customization tasks column icon, such as Winamp. We can do the procedure, as long as access Windows SetWindowLong function can drive, as follows : // hidden task column chart :

SetWindowLong (Application->Handle.

GWL_EXSTYLE, WS_EX_TOOLWINDOW);

// task column shows signs :

SetWindowLong (Application->Handle.

GWL_EXSTYLE, WS_EX_APPWINDOW);

四、the establishment of a simple "on" window

A complete Windows applications typically contain a "on the" window to show version information. We customized a dialog box as usual "on the" window of the "on" free customized window, indicates that more information, even including super links. If only show simple version information,

Windows ShellAbout function shelf items have sufficient, following this line of code can be "on" Duihuakuang and is Windows standard "on the" Duihuakuang and procedures may show signs such as the use of resources and systems.

ShellAbout (Handle, ( "on" +Application->Title+ "#"). C_str () ( "\n"

+Application->Title+ "V1.0\n\n" + "夏登城版权所有!"). C_str ()

Application->Icon->Handle);

五、the two methods to choice catalogue

In our applications, allowing users to choose the regular catalogue, such as software manufacturers, users choose catalogue. This involves catalogue option, we may use the following methods for users to choose one of the catalogue : 1, use SHBrowseForFolder and SHGetPathFromIDList function; Company affirms its function as follows :

WINSHELLAPI LPITEMIDLIST WINAPI

SHBrowseForFolder(LPBROWSEINFO lpbi); WINSHELLAPI BOOL WINAPI SHGetPathFromIDList(LPCITEMIDLIST pidl, LPSTR pszPath); LPBROWSEINFO 和LPITEMIDLIST structure refer Win32 files. This method of selecting catalogues available Windows desktop all available inventory, including networks of other computers sharing catalogue neighbors, but not the new catalogue. Li Cheng allows users to choose the following directory, the directory of choice Licheng return at all trails character string.

#include < shlobj.h >

char *GetDir(char *DisplayName, HWND Owner) {

char dir[MAX_PATH] = "";

BROWSEINFO *bi = new BROWSEINFO;

bi->hwndOwner = Owner;

bi->pidlRoot = NULL;

bi->pszDisplayName = NULL;

bi->lpszTitle = DisplayName;

bi->ulFlags = BIF_RETURNONLYFSDIRS;

bi->lpfn = NULL;

bi->lParam = NULL;

bi->iImage = 0;

ITEMIDLIST *il = SHBrowseForFolder(bi);

if(il!=NULL) {

SHGetPathFromIDList(il, dir);

}

delete bi;

return dir;

}

We can use the following list to be chosen from :

AnsiString at Dir = (AnsiString) GetDir ( "Please select catalogue :" Handle);

2, the use of SelectDirectory function. C++Builder the function SelectDirectory achievable catalogue of options, which showed that similar "open" / "preserve" Duihuakuang, but its advantage is to use / non-use keyboard input catalogue members, and allow the creation of new directories. Its original definition as follows : Extern package bool __fastcall SelectDirectory ( AnsiString &Directory, TSelectDirOpts Options, 103-116 HelpCtx);

Licheng SelectDir allow you to choose the following directory :

#include < FileCtrl.hpp >

AnsiString SelectDir(AnsiString Dir) {

if(SelectDirectory(Dir, TSelectDirOpts()

<< sdAllowCreate << sdPerformCreate << sdPrompt,0))

return Dir;

else

return "";

}

for the following redeployed to the users choice catalogue :

AnsiString SelectedDir = SelectDir ( "C:\\My Documents");

外文翻译译文

数据结构是计算机程序设计的重要理论设计基础,它不仅是计算机学科的核心课程,而且已成为其他理工专业的热门选修课,所以学好这门课程是与学好计算机专业是息息相关的。

一,数据结构的概念

数据结构是计算机科学与技术专业的专业基础课,是十分重要的核心课程。所有的计算机系统软件和应用软件都要用到各种类型的数据结构。因此,要想更好地运用计算机来解决实际问题,仅掌握几种计算机程序设计语言是难以应付众多复杂的课题的。要想有效地使用计算机、充分发挥计算机的性能,还必须学习和掌握好数据结构的有关知识。打好“数据结构”这门课程的扎实基础,对于学习计算机专业的其他课程,如操作系统、编译原理、数据库管理系统、软件工程、人工智能等都是十分有益的。

二,为什么要学习数据结构

在计算机发展的初期,人们使用计算机的目的主要是处理数值计算问题。当我们使用计算机来解决一个具体问题时,一般需要经过下列几个步骤:首先要从该具体问题抽象出一个适当的数学模型,然后设计或选择一个解此数学模型的算法,最后编出程序进行调试、测试,直至得到最终的解答。例如,求解梁架结构中应力的数学模型的线性方程组,该方程组可以使用迭代算法来求解。

由于当时所涉及的运算对象是简单的整型、实型或布尔类型数据,所以程序设计者的主要精力是集中于程序设计的技巧上,而无须重视数据结构。随着计算机应用领域的扩大和软、硬件的发展,非数值计算问题越来越显得重要。据统计,当今处理非数值计算性问题占用了90%以上的机器时间。这类问题涉及到的数据结构更为复杂,数据元素之间的相互关系一般无法用数学方程式加以描述。因此,解决这类问题的关键不再是数学分析和计算方法,而是要设计出合适的数据结构,才能有效地解决问题。

描述这类非数值计算问题的数学模型不再是数学方程,而是诸如表、树、图

之类的数据结构。因此,可以说数据结构课程主要是研究非数值计算的程序设计问题中所出现的计算机操作对象以及它们之间的关系和操作的学科。

学习数据结构的目的是为了了解计算机处理对象的特性,将实际问题中所涉及的处理对象在计算机中表示出来并对它们进行处理。与此同时,通过算法训练来提高学生的思维能力,通过程序设计的技能训练来促进学生的综合应用能力和专业素质的提高。

三,有关概念和术语

在系统地学习数据结构知识之前,先对一些基本概念和术语赋予确切的含义。

数据(Data)是信息的载体,它能够被计算机识别、存储和加工处理。它是计算机程序加工的原料,应用程序处理各种各样的数据。计算机科学中,所谓数据就是计算机加工处理的对象,它可以是数值数据,也可以是非数值数据。数值数据是一些整数、实数或复数,主要用于工程计算、科学计算和商务处理等;非数值数据包括字符、文字、图形、图像、语音等。

数据元素(Data Element)是数据的基本单位。在不同的条件下,数据元素又可称为元素、结点、顶点、记录等。例如,学生信息检索系统中学生信息表中的一个记录、八皇后问题中状态树的一个状态、教学计划编排问题中的一个顶点等,都被称为一个数据元素。

有时,一个数据元素可由若干个数据项(Data Item)组成,例如,学籍管理系统中学生信息表的每一个数据元素就是一个学生记录。它包括学生的学号、姓名、性别、籍贯、出生年月、成绩等数据项。这些数据项可以分为两种:一种叫做初等项,如学生的性别、籍贯等,这些数据项是在数据处理时不能再分割的最小单位;另一种叫做组合项,如学生的成绩,它可以再划分为数学、物理、化学等更小的项。通常,在解决实际应用问题时是把每个学生记录当作一个基本单位进行访问和处理的。

数据对象(Data Object)或数据元素类(Data Element Class)是具有相同性质的数据元素的集合。在某个具体问题中,数据元素都具有相同的性质(元素值不一定相等),属于同一数据对象(数据元素类),数据元素是数据元素类的一个实例。例如,在交通咨询系统的交通网中,所有的顶点是一个数据元素类,顶点A和顶点B各自代表一个城市,是该数据元素类中的两个实例,其数据元素的值分别为A和B。

数据结构(Data Structure)是指互相之间存在着一种或多种关系的数据元素的集合。在任何问题中,数据元素之间都不会是孤立的,在它们之间都存在着这样或那样的关系,这种数据元素之间的关系称为结构。根据数据元素间关系的

不同特性,通常有下列四类基本的结构:

⑴集合结构。在集合结构中,数据元素间的关系是“属于同一个集合”。集合是元素关系极为松散的一种结构。

⑵线性结构。该结构的数据元素之间存在着一对一的关系。

⑶树型结构。该结构的数据元素之间存在着一对多的关系。

⑷图形结构。该结构的数据元素之间存在着多对多的关系,图形结构也称作网状结构。

C++Builder程序设计经验

一、数据库程序设计

Borland C++Builder与Delphi一样使用BDE(Borland

Database Engine)数据库接口,特别是它使用BDE Administrator统一管理数据库别名,使得数据库操作与数据库文件位置无关,从而使数据库开发更容易操作。但在发布应用数据库程序时我们不得不同时“发布”BDE,对于一些简单的数据库程序来说,可能BDE比我们的自己设计的程序还大,而且如使用InstallShield配置BDE,添加数据库别名,很可能会配置失败。所以我们可以采用如下方法:在程序设计阶段仍采用BDE管理数据库别名进行调试,但在程序初始化时(如在主窗体的OnCreate事件处理函数中)修改Table部件的DatabaseName属性,如使用类似如下语句:

Table1->DatabaseName = ExtractFilePath(Application->ExeName);或Table1->DatabaseName

= ExtractFilePath(Application->ExeName+”DB”);

这样,对调试阶段没有什么影响,发布应用程序时只要将Table1使用的数据库文件放在当前目录或其“DB”子目录下,数据库程序即可正常运行。甚至您还可以将数据库文件所在目录以字符串形式写入注册表(可在安装程序中设置),然后在程序初始化时从注册表获取目录名,赋值给DatabaseName属性即可。无论怎样,您不必强迫用户安装相对庞大的BDE了。

二、注册表存取

在我们在设计Windows 9x/NT程序时经常需进行注册表信息的存取,如读取程序配置信息、保存配置信息等。写一个注册表存取子程序就很有必要。当需存取注册表时,直接调用此子程序即可,而不必每次都重复一些操作。下面的例程可用来存取整型、字符串型键值,并可在读取失败时返回缺省值Default。

#include < Registry.hpp >

int ReadIntFromReg(HKEY Root, AnsiString Key,

AnsiString KeyName, int Default) {

int KeyValue;

TRegistry *Registry = new TRegistry();

Registry->RootKey = Root;

Registry->OpenKey(Key, false);

try {

KeyValue = Registry->ReadInteger(KeyName);

}

catch(...) {

KeyValue = Default;

}

delete Registry;

return KeyValue;

}

void SaveIntToReg(HKEY Root, AnsiString Key, AnsiString KeyName, int KeyValue) {

TRegistry *Registry = new TRegistry();

Registry->RootKey = Root;

Registry->OpenKey(Key, true);

Registry->WriteInteger(KeyName, KeyValue);

delete Registry;

}

char *ReadStringFromReg(HKEY Root, AnsiString Key, AnsiString KeyName, char *Default) {

AnsiString KeyValue;

TRegistry *Registry = new TRegistry();

Registry->RootKey = Root;

Registry->OpenKey(Key, false);

try {

KeyValue = Registry->ReadString(KeyName);

}

catch(...) {

KeyValue = (AnsiString)Default;

}

delete Registry;

return KeyValue.c_str();

}

void SaveStringToReg(HKEY Root, AnsiString Key,

AnsiString KeyName, char *KeyValue) {

TRegistry *Registry = new TRegistry();

Registry->RootKey = Root;

Registry->OpenKey(Key, true);

Registry->WriteString(KeyName, (AnsiString)KeyValue);

delete Registry;

}

我们可使用如下调用方法(获得Windows墙纸文件名):

AnsiString WallPaperFileName =

ReadStringFromReg(HKEY_CURRENT_USER,

"\\Control Panel\\Desktop", "Wallpaper", "");

三、显示/隐藏任务栏图标

标准的Windows应用程序运行时一般都会在任务栏上显示任务图标,用户可直接用鼠标点击任务栏图标进行任务切换,但有些应用程序不使用任务栏图标,如典型的Office工具条,也有些程序可由用户定制显示方式显示或隐藏任务栏图标,如Winamp。我们的程序中也可以做到,只要调用Windows API函数SetWindowLong即可,如下:

// 隐藏任务栏图标:

SetWindowLong(Application->Handle,

GWL_EXSTYLE, WS_EX_TOOLWINDOW);

// 显示任务栏图标:

SetWindowLong(Application->Handle,

GWL_EXSTYLE, WS_EX_APPWINDOW);

四、建立简单的“关于”窗口

一个完整的Windows应用程序一般都包含一个“关于”窗口,用以显示版本信息等。通常我们是定制一个对话框作为“关于”窗口,当然这样的“关于”窗口可以自由定制,显示更多信息,甚至可包括超链接。但如只需显示简单版本信息等,

Windows Shell Library 函数ShellAbout已足够了,下面这行代码就可以显示“关于”对话框,而且是Windows标准的“关于”对话框,同时可显示程序图标和系统资源使用情况等。

ShellAbout(Handle, ("关于"+Application->Title+"#").c_str(),

("\n"+Application->Title+" V1.0\n\n"+"夏登城版权所有!").c_str(), Application->Icon->Handle);

五、选择目录的两种方法

在我们的应用程序中经常需让用户选择目录,如杀毒软件中用户选择处理目录等。这就涉及目录的选择,我们可使用如下方法之一让用户选择目录:

1、使用SHBrowseForFolder和SHGetPathFromIDList函数;其函数原形申明如下:

WINSHELLAPI LPITEMIDLIST WINAPI SHBrowseForFolder(LPBROWSEINFO lpbi);

WINSHELLAPI BOOL WINAPI SHGetPathFromIDList(LPCITEMIDLIST pidl, LPSTR pszPath); LPBROWSEINFO和LPITEMIDLIST的结构请参考Win32文档。这种方法选取目录可获得Windows桌面下所有可用的目录,包括网络邻居中其它计算机的共享目录等,但不可新建目录。下面的例程可让用户选择目录,该例程返回指向所选择目录的全路径字符串。

#include < shlobj.h >

char *GetDir(char *DisplayName, HWND Owner) {

char dir[MAX_PATH] = "";

BROWSEINFO *bi = new BROWSEINFO;

bi->hwndOwner = Owner;

bi->pidlRoot = NULL;

bi->pszDisplayName = NULL;

bi->lpszTitle = DisplayName;

bi->ulFlags = BIF_RETURNONLYFSDIRS;

bi->lpfn = NULL;

bi->lParam = NULL;

bi->iImage = 0;

ITEMIDLIST *il = SHBrowseForFolder(bi);

if(il!=NULL) {

SHGetPathFromIDList(il, dir);

}

delete bi;

return dir;

}

我们可作如下调用得到选择的目录名:

AnsiString Dir = (AnsiString)GetDir("请选择目录:", Handle);

2、使用SelectDirectory函数。C++Builder提供的函数SelectDirectory 可实现目录名的选择,它显示的是类似“打开”/“保存”的对话框,但其优点是可使用/不使用键盘输入目录名,并允许创建新目录。其原形定义如下:extern PACKAGE bool __fastcall SelectDirectory(

AnsiString &Directory, TSelectDirOpts Options, int HelpCtx);

下面的例程SelectDir允许您选择目录:

#include < FileCtrl.hpp >

AnsiString SelectDir(AnsiString Dir) {

if(SelectDirectory(Dir, TSelectDirOpts()

<< sdAllowCreate << sdPerformCreate << sdPrompt,0))

return Dir;

else

return "";

}

可作如下调用,获取用户选择的目录:

AnsiString SelectedDir = SelectDir("C:\\My Documents");

英文文献翻译

中等分辨率制备分离的 快速色谱技术 W. Clark Still,* Michael K a h n , and Abhijit Mitra Departm(7nt o/ Chemistry, Columbia Uniuersity,1Veu York, Neu; York 10027 ReceiLied January 26, 1978 我们希望找到一种简单的吸附色谱技术用于有机化合物的常规净化。这种技术是适于传统的有机物大规模制备分离,该技术需使用长柱色谱法。尽管这种技术得到的效果非常好,但是其需要消耗大量的时间,并且由于频带拖尾经常出现低复原率。当分离的样本剂量大于1或者2g时,这些问题显得更加突出。近年来,几种制备系统已经进行了改进,能将分离时间减少到1-3h,并允许各成分的分辨率ΔR f≥(使用薄层色谱分析进行分析)。在这些方法中,在我们的实验室中,媒介压力色谱法1和短柱色谱法2是最成功的。最近,我们发现一种可以将分离速度大幅度提升的技术,可用于反应产物的常规提纯,我们将这种技术称为急骤色谱法。虽然这种技术的分辨率只是中等(ΔR f≥),而且构建这个系统花费非常低,并且能在10-15min内分离重量在的样本。4 急骤色谱法是以空气压力驱动的混合介质压力以及短柱色谱法为基础,专门针对快速分离,介质压力以及短柱色谱已经进行了优化。优化实验是在一组标准条件5下进行的,优化实验使用苯甲醇作为样本,放在一个20mm*5in.的硅胶柱60内,使用Tracor 970紫外检测器监测圆柱的输出。分辨率通过持续时间(r)和峰宽(w,w/2)的比率进行测定的(Figure 1),结果如图2-4所示,图2-4分别放映分辨率随着硅胶颗粒大小、洗脱液流速和样本大小的变化。

旅游服务贸易外文翻译文献

旅游服务贸易外文翻译文献(文档含英文原文和中文翻译)

旅游服务贸易的国际竞争力:罗马尼亚的案例 引言 旅游业是唯一的可以为任何发展水平的国家提供贸易机会的服务活动。然而,它也是一个很大程度因为国家的能力和在全球经济中的表现而又有明确的利益分配不均行业,而这又需要提高自己的竞争力。 自20世纪90年代初,罗马尼亚旅游业经历了出口量,生长速率和结构的重大变化。这些不同的波动都影响了罗马尼亚在国际旅游市场上相对的竞争地位并引起了其旅游贸易平衡的变化。同时,新的和更多的错杂的欧式建筑,引起了罗马尼亚的区域旅游竞争力的显著变化。 在此背景下,本文试图提出一个框架,以竞争力和旅游贸易表现之间的关系为重点,来评估罗马尼亚的旅游服务贸易的国际竞争力。 一、国际竞争力视角:国际竞争力之与国际旅游业的相关性 国际竞争力的概念,尽管有争议,难以捉摸,但现在已经得到认可,并继续吸引世界各地的学者和决策者的关注。 到目前为止,为提高国际竞争力已采取措施,都被认为是在经济层面进行的(加瑞利,2003)通常是指一个国家生产的商品和服务,以满足国际市场的考验,并同时保持和增加公民的收入的能力(欧洲委员会,2007)。 由于竞争力最终取决于一国企业在国内和国际的市场成功,所以对竞争力的注意力都集中在企业层面的竞争力上(波特,1990),对于此的普遍理解是指“……该公司保持,并更好的是,扩大其全球市场份额,增加和扩大利润的能力” (克拉克和盖,1998, 经济合作与发展组织,1993)。 因此,虽然广泛流传但是国际竞争力作为与国家经济和其国际贸易相关

的理论基础已经不太在学术文献进行分析。因此,一个国家国际竞争力的性质,效益和局限性仍然含糊不清(科尔德威尔,2000,克鲁格曼,1994, 1996)。 国际竞争力,是指一个国家在货物和服务贸易方面巩固和保持贸易优势相对于世界其他地区的贸易优势。 每当一个国家的经济福利通过贸易流量的增加,或通过从初始平衡状态的贸易条件的改变而增加,他的国际竞争力都会得到提高(科尔德威尔,2000)。 贸易理论表示,经济福利依赖于一个国家有比较优势的货物和服务的生产。这实际上意味着当生产符合一国的比较优势的情况时国际竞争力能得到保障。如果一国能在国际上表现良好并在出口市场竞争成功,这可能就是他们健全的国际竞争力的标志。 因此,在国际上,竞争力定义为一个经济体能够吸引其出口需求和投资供给需求的能力和在所有社会规范内提升公民生活水平的能力。这反过来又取决于宏观和微观经济政策,影响生产的经济生产率要素和经营成本的法规和制度。 一个可用的文献回顾和实证证据支持国际竞争力可以解释为在一定程度上,一个国家的出口能力这一观点(道乐和沃尔夫,1993, 格博格等. 2004)。还有就是,事实上,是出口表现和国际竞争力之间的循环关系。出口是国际竞争力的第一衡量指标。出口情况的改善会导致了一个国家的竞争力提升。这种效果是一个企业的技能,知识,创新和运用新技术并能够在一个成功的商业方式中利用技术机会等的结果。 另一方面,为了在竞争激烈的全球市场努力成功实现出口,一个国家被迫提高竞争力。更具竞争力的国家,它的经济更强大。因此,它更有能力在全球市场竞争,以吸引具有较高的知识,技能,水平人们去购买新技术等,

土木工程外文翻译

转型衰退时期的土木工程研究 Sergios Lambropoulosa[1], John-Paris Pantouvakisb, Marina Marinellic 摘要 最近的全球经济和金融危机导致许多国家的经济陷入衰退,特别是在欧盟的周边。这些国家目前面临的民用建筑基础设施的公共投资和私人投资显著收缩,导致在民事特别是在民用建筑方向的失业。因此,在所有国家在经济衰退的专业发展对于土木工程应届毕业生来说是努力和资历的不相称的研究,因为他们很少有机会在实践中积累经验和知识,这些逐渐成为过时的经验和知识。在这种情况下,对于技术性大学在国家经济衰退的计划和实施的土木工程研究大纲的一个实质性的改革势在必行。目的是使毕业生拓宽他们的专业活动的范围,提高他们的就业能力。 在本文中,提出了土木工程研究课程的不断扩大,特别是在发展的光毕业生的潜在的项目,计划和投资组合管理。在这个方向上,一个全面的文献回顾,包括ASCE体为第二十一世纪,IPMA的能力的基础知识,建议在其他:显著增加所提供的模块和项目管理在战略管理中添加新的模块,领导行为,配送管理,组织和环境等;提供足够的专业训练五年的大学的研究;并由专业机构促进应届大学生认证。建议通过改革教学大纲为土木工程研究目前由国家技术提供了例证雅典大学。 1引言 土木工程研究(CES)蓬勃发展,是在第二次世界大战后。土木工程师的出现最初是由重建被摧毁的巨大需求所致,目的是更多和更好的社会追求。但是很快,这种演变一个长期的趋势,因为政府为了努力实现经济发展,采取了全世界的凯恩斯主义的理论,即公共基础设施投资作为动力。首先积极的结果导致公民为了更好的生活条件(住房,旅游等)和增加私人投资基础设施而创造机会。这些现象再国家的发展中尤为为明显。虽然前景并不明朗(例如,世界石油危机在70年代),在80年代领先的国家采用新自由主义经济的方法(如里根经济政策),这是最近的金融危机及金融危机造成的后果(即收缩的基础设施投资,在技术部门的高失业率),消除发展前途无限的误区。 技术教育的大学所认可的大量研究土木工程部。旧学校拓展专业并且新的学校建成,并招收许多学生。由于高的职业声望,薪酬,吸引高质量的学校的学生。在工程量的增加和科学技术的发展,导致到极强的专业性,无论是在研究还是工作当中。结构工程师,液压工程师,交通工程师等,都属于土木工程。试图在不同的国家采用专业性的权利,不同的解决方案,,从一个统一的大学学历和广泛的专业化的一般职业许可证。这个问题在许多其他行业成为关键。国际专业协会的专家和机构所确定的国家性检查机构,经过考试后,他们证明不仅是行业的新来者,而且专家通过时间来确定进展情况。尽管在很多情况下,这些证书虽然没有国家接受,他们赞赏和公认的世界。 在试图改革大学研究(不仅在土木工程)更接近市场需求的过程中,欧盟确定了1999博洛尼亚宣言,它引入了一个二能级系统。第一级度(例如,一个三年的学士)是进入

指纹识别系统(文献综述)

指纹识别方法的综述 摘 要: 对在指纹的预处理和特征提取、指纹分类、指纹的匹配过程中的方向图、滤波器、神经网络等关 键性原理和技术做了详细的说明,并对在各个过程中用到的方法做了进一步的比较,讨论了各种方法的优越性。 0 引 言 自动指纹识别是上世纪六十年代兴起的,利用计算机取代人工来进行指纹识别的一种方法。近年 来,随着计算机技术的飞速发展,低价位指纹采集仪的出现以及高可靠算法的实现,更使得自动指纹识 别技术越来越多地进入到人们的生活和工作中,自动指纹识别系统的研究和开发正在成为国内外学术 界和商业界的热点。相对于其他生物特征鉴别技术例如语音识别及虹膜识别,指纹识别具有许多独到 的优点,更重要的是它具有很高的实用性和可行性,已经被认为是一种理想的身份认证技术,有着十分 广泛的应用前景,是将来生物特征识别技术的主流。 1 指纹取像 图 1 是一个自动指纹识别系统AFIS(Automated Fingerprint Identification System) 的简单流程。 → → → ↓ ↑ ———— 将一个人的指纹采集下来输入计算机进行处理是指纹自动识别的首要步骤。指纹图像的获取主要利用设备取像,方便实用,比较适合AFIS 。利用设备取像的主要方法又利用光学设备、晶体传感器和超声波来进行。光学取像设备是根据光的全反射原理来设计的。晶体传感器取像是根据谷线和脊线皮肤与传感器之间距离不同而产生的电容不同来设计的。超声波设备取像也是采用光波来取像,但由于超声波波长较短,抗干扰能力较强,所以成像的质量非常好。 2 图像的预处理与特征提取 无论采取哪种方法提取指纹,总会给指纹图像带来各种噪声。预处理的目的就是去除图像中的噪 音,把它变成一幅清晰的点线图,以便于提取正确的指纹特征。预处理是指纹自动识别过程的第一步, 它的好坏直接影响着指纹识别的效果。常用的预处理与特征提取( Image Preprocessing and Feature Ex 2 t raction) 方法的主要步骤包括方向图计算、图像滤波、二值化、细化、提取特征和后处理。当然这些步骤 可以根据系统和应用的具体情况再进行适当变化。文献[ 1 ]提出了基于脊线跟踪的方法能够指纹取像 图像预处理 特征提取 指纹识别 数据库管理

旅游管理专业论文外文文献翻译

外文资料译文及原文 译文(一) 消费者体验旅游和品牌的结合 米契尔罗伯特 定义消费者体验旅游 制造工厂参观,公司博物馆和公司访客中心表现为被不同名字已知的观光事业片段:制造业观光事业,工业的吸引、工业的观光事业和工业的遗产观光事业。在每一个描述性的长期的共同目标是在消费者学习品牌,其运作,生产过程,历史和历史意义的时候建立一个消费者和品牌之间的纽带。有人建议在这里CET代表一个统一的主题的旅游。这个术语捕捉消费者的消费能力发现更多关于他们所消费的品牌,而制造商可以在与该工厂的客人接触的30-120分钟时间里建立与这些消费者更密切的关系。 参与的品牌 品牌经理寻求解决在三个层次消费者的需求: (1)功能(对消费者提供解决问题的办法); (2)符号(提供心理欲望满意度); (3)经历(提供感官快乐,品种,认知,刺激) CET可以通过视觉地介绍品牌,运作,生产工艺,历史和历史意义加强消费者和品牌之间的纽带。这种纽带可以被看作是个人品牌参与和品牌忠诚度的提高。认知参与反映了消费者对产品的兴趣(或学习更多)。CET可以通过刺激消费者对于品牌和生产过程的想象提高消费者的认知水平。此外,积极口碑沟通刺激满足旅客可能会比其他形式的促销更可信。 缺乏现有的直接研究关注 迄今为止,CET已经在行销文学中受到一点注意。米契尔和米契尔(2001年)对此内容这种的旅游网站进行了评估。此外,这些相同的作者已经评估食物和饮料工业中的现象(米契尔和米契尔,2000年),非营利部门(米契尔和米契尔,2001年b),和整体经济(米契尔等, 2001)。米契尔和米契尔(2002)为学者提出了格式,用来评估在当地的服务领域这些设施的地方利益。该主题通常包括对整合营销的简要讨论,但已收到直接研究的关注很有限。

计算机网络-外文文献-外文翻译-英文文献-新技术的计算机网络

New technique of the computer network Abstract The 21 century is an ages of the information economy, being the computer network technique of representative techniques this ages, will be at very fast speed develop soon in continuously creatively, and will go deep into the people's work, life and study. Therefore, control this technique and then seem to be more to deliver the importance. Now I mainly introduce the new technique of a few networks in actuality live of application. keywords Internet Network System Digital Certificates Grid Storage 1. Foreword Internet turns 36, still a work in progress Thirty-six years after computer scientists at UCLA linked two bulky computers using a 15-foot gray cable, testing a new way for exchanging data over networks, what would ultimately become the Internet remains a work in progress. University researchers are experimenting with ways to increase its capacity and speed. Programmers are trying to imbue Web pages with intelligence. And work is underway to re-engineer the network to reduce Spam (junk mail) and security troubles. All the while threats loom: Critics warn that commercial, legal and political pressures could hinder the types of innovations that made the Internet what it is today. Stephen Crocker and Vinton Cerf were among the graduate students who joined UCLA professor Len Klein rock in an engineering lab on Sept. 2, 1969, as bits of meaningless test data flowed silently between the two computers. By January, three other "nodes" joined the fledgling network.

服务贸易自由化机制外文文献翻译2014年译文4000字

文献出处:Barattieri A. The mechanism of service trade liberalization[J]. Journal of International Economics, 2014, 92(1): 1-13. (声明:本译文归百度文库所有,完整译文请到百度文库。) 原文 The mechanism of service trade liberalization Barattieri A Abstract In this paper, Service trade liberalization is the key areas of the United States to promote the TPP negotiations, the United States in the negotiations are pushing mechanism of a high standard of service trade liberalization. In this paper the progress of the TPP negotiations and services trade issues important position, on the basis of the acceptance, architecture design, focus on services, regulatory consistency four aspects in the TPP uncovers the "high standards" service trade liberalization mechanism establishment. American "high standards" service trade liberalization mechanism is tailored to the interests of the United States, actually services in the service of the United States. These mechanisms are through to strengthen and promote the TPP platform, forming reversed transmission to other countries. Key words: the TPP; The United States; Service trade liberalization; High standards; Mechanism design America is the first largest exporter global trade in services, and for many years, continues to service trade surplus. Competitive advantage based on service industry and service industry The importance of promoting American exports, jobs and economic growth, the United States in the multilateral, bilateral and regional multiple layers jointly promoting service trade liberalization. In the Uruguay round negotiations, the United States has overcome many obstacles, for the first time to include the Service Trade in multilateral negotiations, contributed to the general Agreement on Trade in services (the Genre - al Agreement on Trade and Service,

土木工程外文翻译.doc

项目成本控制 一、引言 项目是企业形象的窗口和效益的源泉。随着市场竞争日趋激烈,工程质量、文明施工要求不断提高,材料价格波动起伏,以及其他种种不确定因素的影响,使得项目运作处于较为严峻的环境之中。由此可见项目的成本控制是贯穿在工程建设自招投标阶段直到竣工验收的全过程,它是企业全面成本管理的重要环节,必须在组织和控制措施上给于高度的重视,以期达到提高企业经济效益的目的。 二、概述 工程施工项目成本控制,指在项目成本在成本发生和形成过程中,对生产经营所消耗的人力资源、物资资源和费用开支,进行指导、监督、调节和限制,及时预防、发现和纠正偏差从而把各项费用控制在计划成本的预定目标之内,以达到保证企业生产经营效益的目的。 三、施工企业成本控制原则 施工企业的成本控制是以施工项目成本控制为中心,施工项目成本控制原则是企业成本管理的基础和核心,施工企业项目经理部在对项目施工过程进行成本控制时,必须遵循以下基本原则。 3.1 成本最低化原则。施工项目成本控制的根本目的,在于通过成本管理的各种手段,促进不断降低施工项目成本,以达到可能实现最低的目标成本的要求。在实行成本最低化原则时,应注意降低成本的可能性和合理的成本最低化。一方面挖掘各种降低成本的能力,使可能性变为现实;另一方面要从实际出发,制定通过主观努力可能达到合理的最低成本水平。 3.2 全面成本控制原则。全面成本管理是全企业、全员和全过程的管理,亦称“三全”管理。项目成本的全员控制有一个系统的实质性内容,包括各部门、各单位的责任网络和班组经济核算等等,应防止成本控制人人有责,人人不管。项目成本的全过程控制要求成本控制工作要随着项目施工进展的各个阶段连续 进行,既不能疏漏,又不能时紧时松,应使施工项目成本自始至终置于有效的控制之下。 3.3 动态控制原则。施工项目是一次性的,成本控制应强调项目的中间控制,即动态控制。因为施工准备阶段的成本控制只是根据施工组织设计的具体内容确

虹膜识别外文翻译文献

虹膜识别外文翻译文献 虹膜识别外文翻译文献 (文档含中英文对照即英文原文和中文翻译) 外文: The first chapter 1.1 The research background of iris recognition Biometrics is a technology for personal identification using physiological characteristics and behavior characteristics inherent in the human body. Can be used for the biological characteristics of biological recognition, fingerprint, hand type face, iris, retina, pulse, ear etc.. Behavior has the following characteristics: signature, voice, gait, etc.. Based on these characteristics, it has been the development of hand shape recognition, fingerprint recognition, facial recognition, iris recognition, signature recognition and other biometric technology, many techniques have been formed and mature to application of. Biological recognition technology in a , has a long history, the ancient Egyptians through identification of each part of the body size measure to carry out identity may be the earliest human based on the earliest history of biometrics. But the modern biological recognition technology began in twentieth Century 70 time metaphase, as biometric devices early is relatively expensive, so only a higher security level atomic test, production base.due to declining cost of microprocessor and various electronic components, precision gradually improve, control device of a biological recognition technology has been gradually applied to commerce authorized, such as access control, attendance management, management system, safety certification field etc.. All biometric technology, iris recognition is currently used as a convenient and accurate.

旅游品牌定位外文翻译文献

旅游品牌定位外文翻译文献(文档含英文原文和中文翻译)

原文: Destination brand positions of a competitive set of near-home destinations Abstract: Although the branding literature commenced during the 1940s, the first publications related to destination branding did not emerge until half a century later. A review of 74 destination branding publications by 102 authors from the first 10 years of destination branding literature (1998–2007) found at least nine potential research gaps warranting attention by researchers. In particular, there has been a lack of research examining the extent to which brand positioning campaigns have been successful in enhancing brand equity in the manner intended in the brand identity. The purpose of this paper is to report the results of an investigation of brand equity tracking for a competitive set of destinations in Queensland, Australia between 2003 and 2007. A hierarchy of consumer-based brand equity (CBBE) provided an effective means to monitor destination brand positions over time. A key implication of the results was the finding that there was no change in brand positions for any of the five destinations over the four year period. This leads to the proposition that destination position change within a competitive set will only

变电站_外文翻译_外文文献_英文文献_变电站的综合概述

英文翻译 A comprehensive overview of substations Along with the economic development and the modern industry developments of quick rising, the design of the power supply system become more and more completely and system. Because the quickly increase electricity of factories, it also increases seriously to the dependable index of the economic condition, power supply in quantity. Therefore they need the higher and more perfect request to the power supply. Whether Design reasonable, not only affect directly the base investment and circulate the expenses with have the metal depletion in colour metal, but also will reflect the dependable in power supply and the safe in many facts. In a word, it is close with the economic performance and the safety of the people. The substation is an importance part of the electric power system, it is consisted of the electric appliances equipments and the Transmission and the Distribution. It obtains the electric power from the electric power system, through its function of transformation and assign, transport and safety. Then transport the power to every place with safe, dependable, and economical. As an important part of power’s transport and control, the transformer substation must change the mode of the traditional design and control, then can adapt to the modern electric power system, the development of modern industry and the of trend of the society life. Electric power industry is one of the foundations of national industry and national economic development to industry, it is a coal, oil, natural gas, hydropower, nuclear power, wind power and other energy conversion into electrical energy of the secondary energy industry, it for the other departments of the national economy fast and stable development of the provision of adequate power, and its level of development is a reflection of the country's economic development an important indicator of the level. As the power in the industry and the importance of the national economy, electricity transmission and distribution of electric energy used in these areas is an indispensable component.。Therefore, power transmission and distribution is critical. Substation is to enable superior power plant power plants or power after adjustments to the lower load of books is an important part of power transmission. Operation of its functions, the capacity of a direct impact on the size of the lower load power, thereby affecting the industrial production and power consumption.Substation system if a link failure, the system will protect the part of action. May result in power outages and so on, to the production and living a great disadvantage. Therefore, the substation in the electric power system for the protection of electricity reliability,

中英金融服务贸易国际竞争力比较研究【文献综述】

毕业论文文献综述 国际经济与贸易 中英金融服务贸易国际竞争力比较研究 金融服务贸易国际竞争力相关理论综述 服务贸易是以服务作为交易标的的一种贸易行为。《服务贸易总协定》(GATS)所界定的国际服务贸易是指以过境交付、境外消费、商业存在和自然人流动这四种形式进行的各国间的服务交易。该定义已成为有一定权威性和指导性的定义为各国接受。 根据《服务贸易总协定》中的服务部门清单,可以将服务贸易分为12类:商业性服务,销售服务,金融服务,娱乐服务,通讯服务,教育服务,卫生服务,运输服务,建筑服务,环境服务,旅游服务和其他服务。而对于金融服务贸易,国内外并没有确切的定义。本文将对金融服务贸易国外及国内有代表性的研究进行综述。 一、GATS与OECD对金融服务贸易的定义 根据GATS的定义,金融服务贸易是指由一成员国的金融服务提供者所提供的任何金融性质的服务。它包括两个部分:所有保险和保险相关的服务、银行和其他金融服务(保险除外),其中其他金融服务指证券和金融信息服务。 经济合作和发展组织(OECD)对金融服务贸易的定义为由金融机构提供服务的收入,或者接受付出的支持,包括得到的和付出的直接投资收益(未分配收益和利息);从其他金融投资得到的和付出的收益(得到的和付出的利息和红利);得到的、付出的手续费和佣金。 可见,经济合作和发展组织对金融服务贸易的界定强调了金融服务贸易交易的提供方,而忽略了金融服务贸易的消费方。金融服务贸易的发展主要是以此换取其他贸易领域的发展,而且金融服务贸易可以促进本国金融业与国际金融业的接轨,从而在国际竞争中促进本国金融业的发展。 二、国外对金融服务贸易相关研究 对于金融服务贸易研究,国外学者从不同角度出发,有不同的看法。 列为恩(1996)认为,各种金融服务可以实现五种基本功能:方便商品和劳务的交易;易于风险管理;加速资源流动;获取信息,评估企业和配置资本;提供公司法人治理。同时,更多的相关文献表示,金融中介可以降低由于信息不对称产生的管理成本(戴蒙德1984;威廉森1987)也可以对规模经济产生积极的效应。 莫施里安(Moshirian 1994)认为,金融服务贸易和制造业类似,一些基本要素赋予了

土木工程外文文献翻译

专业资料 学院: 专业:土木工程 姓名: 学号: 外文出处:Structural Systems to resist (用外文写) Lateral loads 附件:1.外文资料翻译译文;2.外文原文。

附件1:外文资料翻译译文 抗侧向荷载的结构体系 常用的结构体系 若已测出荷载量达数千万磅重,那么在高层建筑设计中就没有多少可以进行极其复杂的构思余地了。确实,较好的高层建筑普遍具有构思简单、表现明晰的特点。 这并不是说没有进行宏观构思的余地。实际上,正是因为有了这种宏观的构思,新奇的高层建筑体系才得以发展,可能更重要的是:几年以前才出现的一些新概念在今天的技术中已经变得平常了。 如果忽略一些与建筑材料密切相关的概念不谈,高层建筑里最为常用的结构体系便可分为如下几类: 1.抗弯矩框架。 2.支撑框架,包括偏心支撑框架。 3.剪力墙,包括钢板剪力墙。 4.筒中框架。 5.筒中筒结构。 6.核心交互结构。 7. 框格体系或束筒体系。 特别是由于最近趋向于更复杂的建筑形式,同时也需要增加刚度以抵抗几力和地震力,大多数高层建筑都具有由框架、支撑构架、剪力墙和相关体系相结合而构成的体系。而且,就较高的建筑物而言,大多数都是由交互式构件组成三维陈列。 将这些构件结合起来的方法正是高层建筑设计方法的本质。其结合方式需要在考虑环境、功能和费用后再发展,以便提供促使建筑发展达到新高度的有效结构。这并

不是说富于想象力的结构设计就能够创造出伟大建筑。正相反,有许多例优美的建筑仅得到结构工程师适当的支持就被创造出来了,然而,如果没有天赋甚厚的建筑师的创造力的指导,那么,得以发展的就只能是好的结构,并非是伟大的建筑。无论如何,要想创造出高层建筑真正非凡的设计,两者都需要最好的。 虽然在文献中通常可以见到有关这七种体系的全面性讨论,但是在这里还值得进一步讨论。设计方法的本质贯穿于整个讨论。设计方法的本质贯穿于整个讨论中。 抗弯矩框架 抗弯矩框架也许是低,中高度的建筑中常用的体系,它具有线性水平构件和垂直构件在接头处基本刚接之特点。这种框架用作独立的体系,或者和其他体系结合起来使用,以便提供所需要水平荷载抵抗力。对于较高的高层建筑,可能会发现该本系不宜作为独立体系,这是因为在侧向力的作用下难以调动足够的刚度。 我们可以利用STRESS,STRUDL 或者其他大量合适的计算机程序进行结构分析。所谓的门架法分析或悬臂法分析在当今的技术中无一席之地,由于柱梁节点固有柔性,并且由于初步设计应该力求突出体系的弱点,所以在初析中使用框架的中心距尺寸设计是司空惯的。当然,在设计的后期阶段,实际地评价结点的变形很有必要。 支撑框架 支撑框架实际上刚度比抗弯矩框架强,在高层建筑中也得到更广泛的应用。这种体系以其结点处铰接或则接的线性水平构件、垂直构件和斜撑构件而具特色,它通常与其他体系共同用于较高的建筑,并且作为一种独立的体系用在低、中高度的建筑中。

旅游管理中英文对照外文翻译文献

中英文对照外文翻译 (文档含英文原文和中文翻译) Tourism and the Environment: A Symbiotic Relationship Nowadays, with the improvement of people's living standards and the pursuit of higher spiritual life, tourism is developing rapidly, and it has an increasing proportion in the national economy. Tourism is getting more and more people's attention, followed by the impact of tourism on the ecological environment. The vigorous development of the tourism industry has multiple effects on the environment. They are both positive and negative. In order to adapt the development of tourism to the capacity of tourism resources, and promote the coordinated development of environment protection and tourism, and this paper will state the impact of tourism on the environment from three aspects: 1 The negative impact of tourism on the environment; 2 The positive impact of tourism on the environment; 3 The countermeasure to against the negative impact of tourism on the environment. Tourism development can put pressure on natural resources when it increases consumption in areas where resources are already scarce. The negative impact of tourism on the environment

相关文档
最新文档