Microsoft PowerPoint - DS_Ch1_EN [兼容模式]

Size: px
Start display at page:

Download "Microsoft PowerPoint - DS_Ch1_EN [兼容模式]"

Transcription

1 Data Structure Ch.1 Introduction Dr. He Emil Huang School of Computer Science and Technology Soochow University 与课本对应关系 严蔚敏老师课本的第一章 Kruse 教材 P0 Chapter 7.6 Asymptotics 渐进 Prerequisite Introduction C++ Programming, High School Mathematics, Discrete Mathematics Textbook: Robert L. Kruse and Alexander J. Ryba, Data Structures And Program Design In C++, Pearson Education 001 Ch.1 Introduction Importance of the Data Structure Information Period (Big data) Computing Everywhere and Every time Give me a level and a place to stand, and I shall move the earth Give me a function, and I shall drive the earth 4 Ch.1 Introduction Importance of the Data Structure Computers: Hardware & Software Algorithms + Data Structures = Programs Two Issues:Data Representation and Processing Data representation and organization influence the efficiency of data processing. Along with the fast development of data based applications, amount of the information increase sharply, and structure of the programs are becoming more and more complicated. 5 Ch.1 Introduction Designing program for an application: How to character the problem to be solved using proper mathematical models? What is the amount of the data, and how is the data correlated with each other? What is the difference between representation of the data with the storage of the data? What operations will be performed on the data? How is the performance of the program? Above questions will be answered by this course! 6 1

2 Case#:File System Name Phone Number Hai Chen Sifeng Li There are many subdirectories and files in the root of the file system. Each subdirectory could also have some subdirectories and files. In another word, a directory may contain several subdirectories, while a subdirectory has only one father directory. This example illustrates the tree structure which is characterized by one-to-many relationship of data. List of Contact Records 7 树形结构 8 CASE#:Transportation Network There are always multiple paths from one place to another place. This is a classical problem of graph structure which could represent many-to-many relationship of data. Xuzhou Nanjing Shanghai Suzhou Changzhou Hangzhou Hefei Graph Structure 9 数据 : 信息载体客观事物的符号表示, 能由计算机程序识别 存储和加工处理的符号集合所有能够数字化的信息均可认为是数据 数据元素 : 组成数据的有一定意义的基本单位, 在程序中通常作为一个整体来进行考虑和处理同义词 : 元素 结点 顶点 记录 对象 元组等 数据项 : 具有独立含义的最小标识单位, 客观事物某一方面特性的数据描述同义词 : 字段 域 属性等 10 Fundamental Terms Data Layers: Data ( 数据 ):A set of all the symbols that computer can manage. 所有能输入到计算机中并被计算机所识别和处理的符号的总称 Data Elements ( 数据元素 ): A character + or a student when it is stored in a computer. Data Item ( 数据项 ): When the data element is a record, it can be divided into data items. Example: a student record may be combined by number, name, score and so on. Data Structure:a particular way of organizing data in a computer so that it can be used efficiently Data structure at logical level: Logical relationships between data elements; Data structure at physical level: How the data is stored in memory Depending on the OS and program language Operations:Performed on the data structure Define at the logical level, implement at the physical level 1

3 1.1 基本概念和术语 数据结构 : 没有统一定义, 通常指数据元素之间的相互关系, 即数据的组织形式 数据的逻辑结构 : 数据元素之间的逻辑关系 数据的存储结构 : 数据元素及其关系在计算机存储器内的表示 ( 逻辑结构在存储器中的映像, 通过计算机语言来实现, 依赖于计算机语言 ) 数据的运算 : 对数据施加的操作 ( 定义在数据的逻辑结构上, 而在存储结构上实现 ) Data type:determines the possible values and all allowed operations, could be deemed as the data structure provided by the program language. Atomic type:undividable & Primitive int,char, boolean, +, -, *, /, Structure type:combinatorial & Userdefined array, struct, queue, Traverse, Insert, Delete, Clear, Search, 1 14 数据结构举例 ( 科研业绩统计表 ) 系别姓名职称 SCI EI 经费 1 张明 教授 王华 教授 6 15 李立 教授 行 : 结点 ( 对象 记录 元组等 ); 列 : 数据项 ( 属性 域 字段等 ) 逻辑结构 : 开始结点? 终端结点? 内部结点? 结点之间的逻辑关系 : 有且仅有 1 个开始结点和 1 个终端结点, 表中任 1 结点最多只有 1 个直接前驱和 1 个直接后继 线性关系 存储结构 : 用数组实现, 还是用指针实现? 15 运算 : 创建 插入 删除 查找等 1.1 基本概念和术语 逻辑结构 线性结构 : 任一结点最多只有 1 个直接前驱和 1 个直接后继 非线性结构 : 一结点可有多个直接前驱和多个直接后继 集合结构 : 元素间无关系, 只有元素是否属于集合的关系 存储结构 (1) 顺序存储方法逻辑上相邻的结点存储在物理位置上相邻的存储单元里结点间的逻辑关系由存储单元的邻接关系来体现借助于数组描述应用于线性的数据结构, 非线性的数据结构的线性化 基本概念和术语 存储结构 () 链接存储方法该方法不要求逻辑上相邻的结点在物理位置上亦相邻借助于指针来表示结点间的逻辑关系 () 索引存储方法在存储结点信息的同时, 建立附加的索引表 表中每项称为索引项 ( 关键字, 地址 ) 稠密索引 : 每个结点对应 1 个索引项稀疏索引 : 一组结点对应 1 个索引项 Data Structure: Collection of relational Data Elements Logical Structure( 逻辑结构 ): the intrinsic relations between data elements. According to the difference of the relation, we can mainly classify them into four kinds. List Tree Graph Set (4) 散列存储方法 根据结点的 Key 直接计算出该结点的存储地址 17

4 Storage Structure( 存储结构 ): Physical Structure in computer Contiguous ( 临近的 ) structure // 顺序结构 Linked structure // 链式结构 务必记牢英文表达! Operations ⑴ Construct a new structure; ⑵ Destroy an structure; ⑶ Remove an element from the data structure; ⑷ Insert an element into the data structure; ⑸ Traverse the data structure; ⑹ Replace/Modify an element; ⑺ Sort the elements; ⑻ Search an element given some conditions 基本概念和术语 数据结构 方面之联系 同一逻辑结构的不同存储结构, 则用不同名称称谓例如, 线性表 顺序表, 链表, 散列表 运算不同, 称谓也不同线性表 栈 队列 顺序栈 顺序队列 数据的逻辑结构和物理结构是密不可分的两个方面, 一个算法的设计取决于所选定的逻辑结构, 而算法的实现依赖于所采用的存储结构 在 C 语言中, 用一维数组表示顺序存储结构 ; 用结 一般线性表 逻辑结构 线性表 数据的逻辑结构 非线性结构 构体类型表示链式存储结构 1 数据逻辑结构层次关系图 树 图 线性结构 受限线性表 栈和队列 逻辑结构与所采用的存储结构 线性表推广 串 数组 集合 广义表 物理结构 顺序存储结构 链式存储结构 复合存储结构 一般树 树形结构 二叉树 有向图 图状结构 无向图 抽象数据类型 (Abstract Data Type, Page 71 Section.5) 数据类型 : 值的范围, 执行的操作 ADT: 抽象的数据组织和与之相关的操作, 可看作是数据的逻辑结构及其在逻辑结构上定义的抽象操作 特点 1 封装与隐藏 : 将数据和操作封装在一起, 内部结构和实现细节对外屏蔽, 实现信息隐藏 抽象 : 用户只能通过 ADT 里定义的接口和说明来访问和操作数据 他反映了程序设计的两层抽象 : 概念层 ( 抽象 )---ADT 类说明 实现层 --- 类实现, 相当于普通类型 应用层 ---- 如 main(){, 通过操作对象解决实际 Abstract Data Type ADT ADT_Name{ Data: 数据结构说明 Operations: Constructor:// 构造函数, 创建对象实例 Operation1:// 用 C++ 或 C 函数原型描述 input: Preconditions:// 初始条件, 执行本操作前系统 // 需满足的状态 process:// 对数据执行的操作 output:// 对返回数据的说明 Postconditions:// 执行本操作后系统的状态 Operation: 问题 4 4

5 Example: ADT definition of complex number ADT Complex { // 复数的抽象数据类型表示数据对象 :D={e1,e e1,e RealSet 数据关系 :R1={<e1,e> e1 是复数的实数部分,e 是复数的虚数部分 基本操作 : InitComplex( &Z, v1, v ) 操作结果 : 构造复数 Z, 其实部和虚部分别被赋以参数 v1 和 v 的值 DestroyComplex( &Z) 操作结果 : 复数 Z 被销毁 GetReal( Z, &realpart) 初始条件 : 复数已存在 操作结果 : 用 realpart 返回复数 Z 的实部值 GetImag( Z, &ImagPart) 初始条件 : 复数已存在 操作结果 : 用 ImagPart 返回复数 Z 的虚部值 Add( z1,z, &sum ) 初始条件 :z1, z 是复数 操作结果 : 用 sum 返回两个复数 z1 z 的和值 ADT Complex 5 Representation and implementation of ADT Differences by using different programming language C ADT 无 Data Object structure Operation function C++,Java ADT Class Data Object Data member Operations Class method 6 Representation of complex number in C typedef struct { double realpart; double imagpart; Complex; boolean assign(complex *psrc, Complex *pdes){ if (psrc ==NULL pdes==null ) return ERROR; pdes->realpart = psrc->realpart; pdes->imagpart = psrc->imagpart; return TRUE; Complex *add(complex *pz1, Complex *pz){ Complex *psum = (Complex *)malloc(sizeof(complex)); if ( psum==null )return NULL; psum->realpart = pz1->realpart + pz->realpart; psum->imagpart = pz1->imagpart + pz->imagpart; return psum; Representation of complex number in C++ class Complex{ // 类的声明 protected: double realpart; 类的保护数据成员 double imagpart; public: 构造 Complex( ); 函数 Complex(double realval,double imagval); 重载 Complex(Complex& z) { assign(z); ~Complex( ); 类的成员函数 ( 方法 ) void assign(complex& z); double getreal(void) const { return realpart; // 该函数不允许修改类的数据成员, 作为一种良好的编程风格, 在声明一个成员函数时, 若该成员函数并不对数据成员进行修改操作, 应尽可能将该成员函数声明为 const 成员函数 因为 const 成员函数中不允许对数据成员进行修改, 如果修改, 编译器将报错, 这大大提高了程序的健壮性 double getimag(void) const { return imagpart; 7 friend Complex add(complex& z1, Complex& z); 8 ; // 类的实现部分 Complex::Complex(double realval, double imagval){ // realpart = realval; imagpart= imagval; void Complex::assign(Complex& z){ realpart = z.realpart; imagpart = z.imagpart; Complex add(complex& z1, Complex& z){ Complex sum(z1); // 创建 sum 对象, 并用 z1 对其初始化 sum.realpart += z.realpart; sum.imagpart += z.imagpart; return sum; 9 Processing problems by computer Outside Representation Management Demand Question Build Model Logical Structure Basic Operation Mathematic model Refine Storage Structure Algorithm Implementation 在 C++ 中实现时通常以类来实现数据结构及其上的操作 5

6 Processing problems by computer Fundamental Tasks: Problems of Large Programs The patchwork approach is doomed to fail. Definition of Data Structure (including logical structure and base operations); Realization of Data Structure (including storage structure and base operations); Estimation and Selection of Data Structure (analysis of algorithms) 1. Problem specification ( 需求分析 ). Program organization. Choice of data structures 4. Algorithm analysis 5. write the whole program 6. Debugging 7. Testing and verification 8. Maintenance 维护 Asymptotic Time Complexity( 时间复杂度 ) Asymptotic Space Complexity( 空间复杂度 ) And we must also be careful to observe important principles of program design. Program Design in C++ C++ features: Data Abstraction ( 数据抽象 ) Object-oriented design ( 面向对象的设计 ) Top-down approach Code reuse ( 代码重用 ) Refinement, improvement, extension of C Introduction of OO (Object Oriented) Encapsulation ( 封装性 ) Inheritance ( 继承性 ) 1. 算法描述分析 Algorithm ( 算法 ) 重要性 : 数据的运算是通过算法描述的 定义 : 非形式地说, 算法是任意一个良定义的计算过程, 它以一个或多个值作为输入, 并产生一个或多个值作为输出 因此, 一个算法就是一系列将输入转换为输出的计算步骤 Essential Elements 5 要素 输入 输出 有穷性 ( 每条指令的执行次数须有限 ) 确定性 可行性 ( 每条指令执行时间须有限 ) 算法与程序的联系与区别 Polymorphism ( 多态性 ) 4 1. 算法描述分析 输入实例一个问题的输入实例是由满足问题陈述中的限制 并能计算出该问题解的所有输入构成的 算法描述自然语言 数学语言 伪语言 程序语言等均可本课程以 C & C++ 为主, 但不拘泥于细节 算法评价正确性 可读性 健壮性 时空性能 5 1. 算法描述分析 Description of the particular steps of the process of a problem( 处理某一问题的步骤的描述 ) Characteristics Finite Certainty Feasibility Input interface Output interface Format is flexible,it can be described by Natural Language, Advanced Language, and the syntax is not the most important thing. Nothing to do with the environment 6

7 1. 算法描述分析 As an end-user of a program, its running time, refer to the wall-clock time.( 绝对时间 ) Program: The whole process of the problem ( 用计算机处理问题的全部代码的整体 ) May be Infinite Syntax must be accurate Closely linked with the environment It is not necessarily a reliable means of knowing whether a program is fast or slow, since there may be several other factors that cloud the issue. 绝对时间量并不是衡量一个程序好坏的客观标准 Program A and B, wall-clock time 10 and 5 seconds respectively. Speed of your CPU? Other programs running at the same time? What is the language? Same environment to make fair comparison. CPU 的性能, 是否有其他程序在同时运行, 比较应该在一个公平的环境下进行 1. 算法描述分析 算法分析算法效率的度量 事后统计 : 利用计算机内部的计时功能 缺陷 必须先运行依据算法编制的程序 时间统计量依赖于计算机的软硬件环境 double start, stop; time (&start); main process(n, ); time (&stop); double runtime = stop -start; printf ("%d%d\n", n, runtime ); 9 1. 算法描述分析 事前分析估算 ( 时间 ) 求出该算法的一个时间界限函数一些影响因素 : 算法的策略 问题的规模 书写程序的语言 编译器产生的机器代码的质量 机器执行指令的速度 算法描述与分析 算法分析算法的时间是每条语句执行时间的总和每条语句的执行时间 = 该语句执行次数 ( 频度 ) X 该语句执行 1 次的时间假定 : 每语句执行 1 次的时间为 1 个时间单位则 : 算法的执行时间 = 各语句频度 问题的规模 (Size)n 输入量的大小, 如图的顶点数 时间复杂度 : 算法的运行时间, 是问题规模的函数 如何理解问题规模? 算法描述与分析 时间复杂度例 1: 矩阵乘法 for ( i=0; i<n; i++) //n+1 for ( j=0; j<n; j++) { //n(n+1) C[i] [j]=0; //n for ( k=0;k<n; k++) //n (n+1) C[i][j]=C[i][j]+A[i][k]*B[k][j]; //n 详细分析 : T(n)=n +n +n+1 简单分析 : 频度最大的语句 T(n) =n 4 7

8 1. 算法描述与分析 渐近时间复杂度 ( 简称时间复杂度 ) asymptotic ( 教材 P0-P1 Sec. 7.6) 从宏观上评价时间性能, 只关心当 n 趋向无穷大时, T(n) 的数量级 ( 阶, Orders of Magnitude) lim n lim n T ( n ) / ( n limt( n) / n n lim(n n n n n n 1) / n n 即 :T(n) 和 n 同阶, 数量级相同 1 ) / n 1. 算法描述与分析 The idea is for us to compare our function f(n) with some well-known function g(n) whose behavior we already understand. In fact, some of the most common choices for the function g(n) against which we compare f(n) are: 为了衡量 f(n) 我们的想法是让 f(n) 与一些经典的或众所周知的 g(n) 进 行比较, 如下列经典函数 g(n)=1 Constant function ( 常函数 ) g(n)= logn Logarithmic function ( 对数函数 ) g(n)= n Linear function ( 线性函数 ) g(n)= n Quadratic function ( 二次函数 ) g(n)= n Cubic function ( 三次函数 ) g(n)= n Exponential function ( 指数函数 ) 4 记作 :T(n)=O(n 44 ) 1. 算法描述与分析 To compare f(n) against g(n), we take their quotient f(n)/g(n) and take the limit of this quotient as n increases without bound. Depending on the outcome, we have one of the following cases: 为了用 g(n) 比较 f(n), 我们的做法是计算当 n 趋于无穷时,f(n)/g(n) 的极限 :P04 1. 算法描述与分析 Some Assumptions and Definitions 假设对所有足够大的 n, 存在 f(n)>0, and g(n)>0 假设存在 如果, 则 f(n) 有比 g(n) 严格小的数量级 如果, 为非零有限值, 则 f(n) 与 g(n) 数量级相同 45 如果, 则 f(n) 有比 g(n) 严格高的数量级 算法描述与分析 Some Assumptions and Definitions (cont.) 与具有同样的意义 对数的数量级不依赖于对数的底数 ( 洛必达法则 ), log a n 与 log b n 具有相同的数量级 (a>1, b>1) 对任意实数 a>1 和任意正整数 r, 任何指数函数 a n 有比 n 的任何次幂 n r 严格高的数量级 ( 见教材 7.6.) 算法描述与分析 大 Θ 的数学定义 ( 渐进紧致界 ) 对一个给定函数 g(n), 用 Θ(g(n)) 来表示以下的函数集合 : Θ(g(n))={f(n): 存在正常量 c 1, c, n 0, 使得对所有 n>n 0, 有 0 c 1 g(n) f(n) c g(n) 存在正常量 c 1, c 使得对于足够大的 n, 函数 f(n) 能够被 夹在 c 1 g(n) 和 c g(n) 之间, 则 f(n) 属于集合 Θ(g(n)), f(n)=θ(g(n)) 因为 Θ(g(n)) 是一个集合, 所以我们也可以记为 f(n) Θ(g(n)) 我们称 g(n) 是 f(n) 的一个渐进紧致界 (asymptotically tight bound) 48 8

9 1. 算法描述与分析 大 O 的数学定义 ( 渐进上界 ) 若 g(n) 和 f(n) 是定义在正整数集合上的两个函数, 则 f(n)=o(g(n)) 表示存在两个正的常数 c 和 n 0, 使得当 n n 0 时都满足 0 f(n) c g(n) 函数 f(n) 是集合 O(g(n)) 的成员 ; f(n)=θ(g(n)) 蕴含 f(n)=o(g(n)), 因为 Θ 是一个比 O 记号更强的概念 ; 我们称 g(n) 是 f(n) 的一个渐进上界 (asymptotically upper bound), 限制算法最坏情况运行时间 ; 几乎所有的数据结构书籍用 O 记号非形式化地描述渐进紧致界 ( 1. 算法描述与分析 大 Ω 的数学定义 ( 渐进下界 ) 对一个给定函数 g(n), 用 Ω(g(n)) 来表示以下的函数集合 : Ω(g(n))={f(n): 存在正常量 c, n 0, 使得对所有 n n 0 0, 有 0 cg(n) f(n) 存在正常量 c 使得对于 n0 及其右边的所有 n 值, 函数 f(n) 值总大于等于 cg(n), 则 f(n) 属于 Ω(g(n)) 我们称 g(n) 是 f(n) 的渐进下界 (asymptotically lower bound) 确界 ) 算法描述与分析 例 {++x; s=0 ; 将 x 自增看成是基本操作, 则语句频度为 1, 即时间复杂度为 O(1) 如果将 s=0 也看成是基本操作, 则语句频度为, 其时间复杂度仍为 O(1), 即常量阶 1. 算法描述与分析 例 for(i=1; i<=n; ++i) { ++x; s+=x ; 语句频度为 :n, 其时间复杂度为 :O(n), 即为线性阶 例 4 for(i=1; i<=n; ++i) for(j=1; j<=n; ++j) { ++x; s+=x ; 语句频度为 :n, 其时间复杂度为 :O(n ), 即为平方阶 算法描述与分析 定理 : 若 A(n)=a m n m +a m-1 n m-1 + +a 1 n+a 0 是一个 m 次多项式, 则 A(n)=O(n m ) 一个渐进时间为 O(1) 的算法, 它的基本运算执行的次数是固定的 因此, 总的时间由一个常数 ( 即零次多项式 ) 来限界 而一个时间为 O(n ) 的算法则由一个二次多项式来限界 1. 算法描述与分析 以下六种计算算法时间的多项式是最常用的 其关系为 : O(1)<O( logn)<o(n)<o(nlogn)<o(n )<O(n ) 指数时间的关系为 : O( n )<O(n!)<O(n n ) 当 n 取值很大时, 指数时间算法和多项式时间算法在所需时间上非常悬殊 因此, 只要有人能将现有指数时间算法中的任何一个算法化简为多项式时间算法, 那就取得了一个伟大的成就 有的情况下, 算法中基本操作重复执行的次数还随问题的输入数据集不同而不同

10 例 5: 素数的判断算法 void prime( int n) /* n 是一个正整数 */ { int i= ; while ( (n% i)!=0 && i*1.0< sqrt(n) ) i++ ; if (i*1.0>sqrt(n) ) printf( &d 是一个素数 \n, n) ; else printf( &d 不是一个素数 \n, n) ; 嵌套的最深层语句是 i++; 其频度由条件 ( (n% i)!=0 && i*1.0< sqrt(n) ) 决定, 显然 i*1.0< sqrt(n), 时间复杂度 O(n 1/ ) 55 乘法规则针对嵌套程序段 T (n, m) = T 1 (n) * T (m) = O(f (n)*g (m)) 两个并列循环的例子 void exam (float x[ ][ ], int m, int n) { float sum [ ]; for (int i = 0; i < m; i++) { //x 中各行 sum[i] = 0.0; // 数据累加 for (int j = 0; j < n; j++) sum[i] += x[i][j]; for (i = 0; i < m; i++) // 打印各行数据和 cout << i << : <<sum [i] << endl; 渐进时间复杂度为 O(max (m*n, m)) 1. 算法描述与分析 空间复杂度 (Space complexity) : 是指算法编写成程序后, 在计算机中运行时所需存储空间大小的度量 记作 : S(n)=O(f(n)) 其中 : n 为问题的规模 ( 或大小 ) 该存储空间一般包括三个方面 : 指令常数变量所占用的存储空间 ; 输入数据所占用的存储空间 ; 辅助 ( 存储 ) 空间 一般地, 算法的空间复杂度指的是辅助空间 一维数组 a[n]: 空间复杂度 O(n) 二维数组 a[n][m]: 空间复杂度 O(n*m) 58 习题 1 若求解同一问题的两个算法 A 和 B 的时间复杂度分别为 T 1 (n) 和 T (n), 则 A 的时间性能优于 B 的时间性能, 是指 ( ) A. 对于所有的 n>=0,t 1 (n)>t (n); B. 对于所有的 n>=0,t 1 (n)<t (n); C. 存在一个常数 n 0 >0, 若 n>=n 0, 则 T 1 (n)>t (n) D. 存在一个正常数 n 0, 若 n>=n 0, 则 T 1 (n)<t (n) 习题 通常我们说一个算法的时间复杂度是指 () A. 算法在最坏情况下的时间复杂度 ; B. 算法的平均时间复杂度 ; C. 算法在最好情况下的时间复杂度 ; D. 算法的期望运行时间 ;

11 习题 当 n 充分大时, 按从小到大的次序将下述时间排序 T 1 (n)=5n -n+60lgn T (n)=n +1000n+lgn T (n)=8n +0000lgn+5000 T 4 (n)=1.5n +6000nlgn T 5 (n)=8n +n 习题 4 算法的执行时间取决于 A. 问题的规模 B. 语句的条数 C. 输入实例的初始状态 D. A&C T 6 (n)= n n 61 6 习题 5 以下不能独立于计算机的是 A. 数据的逻辑结构 B. 算法的设计和分析 C. 存储结构 D. ADT 的定义 6 11

Microsoft PowerPoint - DS_Ch1.ppt [兼容模式]

Microsoft PowerPoint - DS_Ch1.ppt [兼容模式] 014/4/7 数据结构 计算机学院肖明军 Email: xiaomj@ustc.edu.c http://staff.ustc.edu.c/~xiaomj 1 课程简介 先修课程及条件程序设计的经验 C 离散数学 概率分析 教材 : 数据结构, 黄刘生, 经济科学出版社数据结构 (C 语言版 ), 严蔚敏, 清华大学出版社 考核 : 考试 作业 上机 参考书 C 数据结构,William Ford

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

untitled

untitled 1-1 1-2 1-3 1-4 1-5 1-6 1-7 1-8 1-1-1 C int main(void){ int x,y,z; int sum=0; double avg=0.0; scanf("%d",&x) ; scanf("%d",&y) ; scanf("%d",&z) ; sum=x+y+z ; avg=sum/3.0; printf("%f\n",avg); system("pause");

More information

WTO

WTO 10384 200015128 UDC Exploration on Design of CIB s Human Resources System in the New Stage (MBA) 2004 2004 2 3 2004 3 2 0 0 4 2 WTO Abstract Abstract With the rapid development of the high and new technique

More information

<4D6963726F736F667420506F776572506F696E74202D20C8EDBCFEBCDCB9B9CAA6D1D0D0DEBDB2D7F92E707074>

<4D6963726F736F667420506F776572506F696E74202D20C8EDBCFEBCDCB9B9CAA6D1D0D0DEBDB2D7F92E707074> 软 件 架 构 师 研 修 讲 座 胡 协 刚 软 件 架 构 师 UML/RUP 专 家 szjinco@public.szptt.net.cn 中 国 软 件 架 构 师 网 东 软 培 训 中 心 小 故 事 : 七 人 分 粥 当 前 软 件 团 队 的 开 发 现 状 和 面 临 的 问 题 软 件 项 目 的 特 点 解 决 之 道 : 从 瀑 布 模 型 到 迭 代 模 型 解 决 项

More information

Microsoft PowerPoint - ds-1.ppt [兼容模式]

Microsoft PowerPoint - ds-1.ppt [兼容模式] http://jwc..edu.cn/jxgl/ HomePage/Default.asp 2 说 明 总 学 时 : 72( 学 时 )= 56( 课 时 )+ 16( 实 验 ) 行 课 时 间 : 第 1 ~14 周 周 学 时 : 平 均 每 周 4 学 时 上 机 安 排 待 定 考 试 时 间 : 课 程 束 第 8 11 12 章 的 内 容 为 自 学 内 容 ; 目 录 中 标 有

More information

\\Lhh\07-02\黑白\内页黑白1-16.p

\\Lhh\07-02\黑白\内页黑白1-16.p Abstract: Urban Grid Management Mode (UGMM) is born against the background of the fast development of digital city. It is a set of urban management ideas, tools, organizations and flow, which is on the

More information

C/C++ - 字符输入输出和字符确认

C/C++ - 字符输入输出和字符确认 C/C++ Table of contents 1. 2. getchar() putchar() 3. (Buffer) 4. 5. 6. 7. 8. 1 2 3 1 // pseudo code 2 read a character 3 while there is more input 4 increment character count 5 if a line has been read,

More information

南華大學數位論文

南華大學數位論文 Rebuilding The Golden Town Everyday Life and Space at Jin-gua-shi 1897-1987.. ABSTRACT Rebuilding The Golden Town Everyday Life and Space at Jin-gua-shi ABSTRACT This thesis focuses on the formation of

More information

Microsoft Word doc

Microsoft Word doc 中 考 英 语 科 考 试 标 准 及 试 卷 结 构 技 术 指 标 构 想 1 王 后 雄 童 祥 林 ( 华 中 师 范 大 学 考 试 研 究 院, 武 汉,430079, 湖 北 ) 提 要 : 本 文 从 结 构 模 式 内 容 要 素 能 力 要 素 题 型 要 素 难 度 要 素 分 数 要 素 时 限 要 素 等 方 面 细 致 分 析 了 中 考 英 语 科 试 卷 结 构 的

More information

University of Science and Technology of China A dissertation for master s degree Research of e-learning style for public servants under the context of

University of Science and Technology of China A dissertation for master s degree Research of e-learning style for public servants under the context of 中 国 科 学 技 术 大 学 硕 士 学 位 论 文 新 媒 体 环 境 下 公 务 员 在 线 培 训 模 式 研 究 作 者 姓 名 : 学 科 专 业 : 导 师 姓 名 : 完 成 时 间 : 潘 琳 数 字 媒 体 周 荣 庭 教 授 二 一 二 年 五 月 University of Science and Technology of China A dissertation for

More information

2008 Nankai Business Review 61

2008 Nankai Business Review 61 150 5 * 71272026 60 2008 Nankai Business Review 61 / 62 Nankai Business Review 63 64 Nankai Business Review 65 66 Nankai Business Review 67 68 Nankai Business Review 69 Mechanism of Luxury Brands Formation

More information

Microsoft Word - A200811-773.doc

Microsoft Word - A200811-773.doc 语 言 模 型 在 高 校 保 研 工 作 中 的 应 用 王 洋 辽 宁 工 程 技 术 大 学 理 学 院 信 息 与 计 算 科 学, 辽 宁 阜 新 (3000) E-mail: ben.dan000 @63.com 摘 要 : 问 题 重 述 : 模 糊 性 数 学 发 展 的 主 流 是 在 它 的 应 用 方 面, 其 中 模 糊 语 言 模 型 实 现 了 人 类 语 言 的 数 学

More information

XXX专业本科人才培养方案

XXX专业本科人才培养方案 计 算 机 科 学 与 技 术 专 业 本 科 人 才 培 养 方 案 (Computer Science and Technology 080901) 一 培 养 目 标 本 专 业 培 养 德 智 体 美 全 面 发 展, 具 有 良 好 的 科 学 与 人 文 素 养, 熟 悉 经 济 管 理 法 律 等 相 关 基 础 知 识, 系 统 地 掌 握 计 算 机 硬 件 软 件 方 面 的 基

More information

数据结构

数据结构 数据结构 主讲 : 张昱马建辉 yuzhang@ustc.edu.cn, 3603804 jianhui@ustc.edu.cn, 3602824 关于课程教学与考核 课程简介 内容简介 数据结构 + 算法 = 程序 数据结构 : 问题的数学模型 线性结构 : 线性表 栈 队列 串 非线性结构 : 树 图 算法 : 求解问题的策略 查找 排序 在 算法基础 课程中介绍 学时 :60/40 学分 :4

More information

Gassama Abdoul Gadiri University of Science and Technology of China A dissertation for master degree Ordinal Probit Regression Model and Application in Credit Rating for Users of Credit Card Author :

More information

10384 199928010 UDC 2002 4 2002 6 2002 2002 4 DICOM DICOM 1. 2. 3. Canny 4. 5. DICOM DICOM DICOM DICOM I Abstract Eyes are very important to our lives. Biologic parameters of anterior segment are criterions

More information

A Study on Grading and Sequencing of Senses of Grade-A Polysemous Adjectives in A Syllabus of Graded Vocabulary for Chinese Proficiency 2002 I II Abstract ublished in 1992, A Syllabus of Graded Vocabulary

More information

東莞工商總會劉百樂中學

東莞工商總會劉百樂中學 /2015/ 頁 (2015 年 版 ) 目 錄 : 中 文 1 English Language 2-3 數 學 4-5 通 識 教 育 6 物 理 7 化 學 8 生 物 9 組 合 科 學 ( 化 學 ) 10 組 合 科 學 ( 生 物 ) 11 企 業 會 計 及 財 務 概 論 12 中 國 歷 史 13 歷 史 14 地 理 15 經 濟 16 資 訊 及 通 訊 科 技 17 視 覺

More information

Microsoft PowerPoint - ch1.ppt

Microsoft PowerPoint - ch1.ppt 数据结构 关于课程教学与考核 主讲 : 张昱 yuzhang@ustc.edu 0551-3603804 课程简介 内容简介 数据结构 + 算法 = 程序 数据结构 : 问题的数学模型 线性结构 : 线性表 栈 队列 串 非线性结构 : 树 图 算法 : 求解问题的策略 查找 排序 在 算法基础 课程中介绍 学时 :60/40 学分 :4 与其他课程的关系 先修课 : 程序设计语言 C 程序设计语言

More information

untitled

untitled LBS Research and Application of Location Information Management Technology in LBS TP319 10290 UDC LBS Research and Application of Location Information Management Technology in LBS , LBS PDA LBS

More information

<4D6963726F736F667420576F7264202D205F4230365FB942A5CEA668B443C5E9BB73A740B5D8A4E5B8C9A552B1D0A7F75FA6BFB1A4ACFC2E646F63>

<4D6963726F736F667420576F7264202D205F4230365FB942A5CEA668B443C5E9BB73A740B5D8A4E5B8C9A552B1D0A7F75FA6BFB1A4ACFC2E646F63> 運 用 多 媒 體 製 作 華 文 補 充 教 材 江 惜 美 銘 傳 大 學 應 用 中 文 系 chm248@gmail.com 摘 要 : 本 文 旨 在 探 究 如 何 運 用 多 媒 體, 結 合 文 字 聲 音 圖 畫, 製 作 華 文 補 充 教 材 當 我 們 在 進 行 華 文 教 學 時, 往 往 必 須 透 過 教 案 設 計, 並 製 作 補 充 教 材, 方 能 使 教 學

More information

旅 句 良 年 理 了 來 不 不 更 更 說 識 更 樓 歷 練 靈 旅 論 不 了 契 諒 老 老 老 不 勵 老 不 良 論 漏 不 老 老 不 勵 不 了 了 老 論 利 行 老 見 不 見 更 老 玲 歷 老 料 理

旅 句 良 年 理 了 來 不 不 更 更 說 識 更 樓 歷 練 靈 旅 論 不 了 契 諒 老 老 老 不 勵 老 不 良 論 漏 不 老 老 不 勵 不 了 了 老 論 利 行 老 見 不 見 更 老 玲 歷 老 料 理 立 論 年 六 旅 句 良 年 理 了 來 不 不 更 更 說 識 更 樓 歷 練 靈 旅 論 不 了 契 諒 老 老 老 不 勵 老 不 良 論 漏 不 老 老 不 勵 不 了 了 老 論 利 行 老 見 不 見 更 老 玲 歷 老 料 理 女 路 路 力 臨 玲 老 不 若 不 識 年 六 歷 行 來 參 論 說 說 歷 狀 年 錄 料 行 料 料 年 列 異 力 識 論 若 Research

More information

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO Car DVD New GUI IR Flow User Manual V0.1 Jan 25, 2008 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com Important Notice SUNPLUS

More information

UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 厦门大学博硕士论文摘要库

UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 厦门大学博硕士论文摘要库 10384 15620071151397 UDC Empirical Researches on Pricing of Corporate Bonds with Macro Factors 2010 4 Duffee 1999 AAA Vasicek RMSE RMSE Abstract In order to investigate whether adding macro factors

More information

高中英文科教師甄試心得

高中英文科教師甄試心得 高 中 英 文 科 教 師 甄 試 心 得 英 語 學 系 碩 士 班 林 俊 呈 高 雄 市 立 高 雄 高 級 中 學 今 年 第 一 次 參 加 教 師 甄 試, 能 夠 在 尚 未 服 兵 役 前 便 考 上 高 雄 市 立 高 雄 高 級 中 學 專 任 教 師, 自 己 覺 得 很 意 外, 也 很 幸 運 考 上 後 不 久 在 與 雄 中 校 長 的 會 談 中, 校 長 的 一 句

More information

声 明 本 人 郑 重 声 明 : 此 处 所 提 交 的 硕 士 学 位 论 文 基 于 等 级 工 鉴 定 的 远 程 考 试 系 统 客 户 端 开 发 与 实 现, 是 本 人 在 中 国 科 学 技 术 大 学 攻 读 硕 士 学 位 期 间, 在 导 师 指 导 下 进 行 的 研 究

声 明 本 人 郑 重 声 明 : 此 处 所 提 交 的 硕 士 学 位 论 文 基 于 等 级 工 鉴 定 的 远 程 考 试 系 统 客 户 端 开 发 与 实 现, 是 本 人 在 中 国 科 学 技 术 大 学 攻 读 硕 士 学 位 期 间, 在 导 师 指 导 下 进 行 的 研 究 中 国 科 学 技 术 大 学 硕 士 学 位 论 文 题 目 : 农 村 电 工 岗 位 培 训 考 核 与 鉴 定 ( 理 论 部 分 ) 的 计 算 机 远 程 考 试 系 统 ( 服 务 器 端 ) 的 开 发 与 实 现 英 文 题 目 :The Realization of Authenticating Examination System With Computer & Web for

More information

豐佳燕.PDF

豐佳燕.PDF Application of Information Literacy to chiayen@estmtc.tp.edu.tw information literacy Theme-oriented teaching. Abstract Based on the definition of Information Literacy and Six core concepts of the problem

More information

Abstract After over ten years development, Chinese securities market has experienced from nothing to something, from small to large and the course of

Abstract After over ten years development, Chinese securities market has experienced from nothing to something, from small to large and the course of 2003 MBA 600795 SWOT Abstract After over ten years development, Chinese securities market has experienced from nothing to something, from small to large and the course of being standardized. To all securities

More information

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d WeChat Search Visual Identity Guidelines WEDESIGN 2018. 04 Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies

More information

ENGG1410-F Tutorial 6

ENGG1410-F Tutorial 6 Jianwen Zhao Department of Computer Science and Engineering The Chinese University of Hong Kong 1/16 Problem 1. Matrix Diagonalization Diagonalize the following matrix: A = [ ] 1 2 4 3 2/16 Solution The

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF TPM TPM TPM TPM TPM TPM TPM TPM TPM : (TPM)MP (Synergy) ii Abstract There are over 60 companies, which have had the experience in TPM implementation, but only 12 companies have got TPM Award until 2000.

More information

案例正文:(幼圆、小三、加粗)(全文段前与段后0

案例正文:(幼圆、小三、加粗)(全文段前与段后0 案 例 正 文 : 1 中 国 农 业 银 行 FMIS 系 统 开 发 摘 要 : 本 案 例 描 述 一 家 大 型 商 业 银 行 自 主 开 发 战 略 性 管 理 信 息 系 统 的 过 程 该 系 统 不 仅 规 模 大, 而 且 业 务 类 型 复 杂, 项 目 启 动 时 的 系 统 目 标 具 有 高 度 不 确 定 性 项 目 独 特 之 处 是 业 务 专 家 在 项 目 中

More information

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63>

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63> 2010 年 理 工 类 AB 级 阅 读 判 断 例 题 精 选 (2) Computer mouse How does the mouse work? We have to start at the bottom, so think upside down for now. It all starts with mouse ball. As the mouse ball in the bottom

More information

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc References (Section 5.2) Hsuan-Tien Lin Deptartment of CSIE, NTU OOP Class, March 15-16, 2010 H.-T. Lin (NTU CSIE) References OOP 03/15-16/2010 0 / 22 Fun Time (1) What happens in memory? 1 i n t i ; 2

More information

A Study on the Relationships of the Co-construction Contract A Study on the Relationships of the Co-Construction Contract ( ) ABSTRACT Co-constructio in the real estate development, holds the quite

More information

第三章 国内外小组合作学习的应用情况

第三章 国内外小组合作学习的应用情况 摘 要 论 文 题 目 : 小 组 合 作 学 习 在 上 海 高 中 信 息 科 技 教 学 中 的 应 用 专 业 : 现 代 教 育 技 术 学 位 申 请 人 : 朱 翠 凤 指 导 教 师 : 孟 琦 摘 要 小 组 合 作 学 习 是 目 前 世 界 上 许 多 国 家 普 遍 采 用 的 一 种 富 有 创 意 的 教 学 理 论 与 策 略, 其 在 培 养 学 生 的 合 作 精

More information

untitled

untitled 數 Quadratic Equations 數 Contents 錄 : Quadratic Equations Distinction between identities and equations. Linear equation in one unknown 3 ways to solve quadratic equations 3 Equations transformed to quadratic

More information

目次 

目次  軟 體 工 程 期 末 報 告 網 路 麻 將 91703014 資 科 三 黃 偉 嘉 91703024 資 科 三 丘 祐 瑋 91703030 資 科 三 江 致 廣 1 目 次 壹 前 言 (Preface) P.4 貳 計 畫 簡 述 及 預 期 效 益 (Project Description and Expected Results) P.4 參 系 統 開 發 需 求 (System

More information

报 告 1: 郑 斌 教 授, 美 国 俄 克 拉 荷 马 大 学 医 学 图 像 特 征 分 析 与 癌 症 风 险 评 估 方 法 摘 要 : 准 确 的 评 估 癌 症 近 期 发 病 风 险 和 预 后 或 者 治 疗 效 果 是 发 展 和 建 立 精 准 医 学 的 一 个 重 要 前

报 告 1: 郑 斌 教 授, 美 国 俄 克 拉 荷 马 大 学 医 学 图 像 特 征 分 析 与 癌 症 风 险 评 估 方 法 摘 要 : 准 确 的 评 估 癌 症 近 期 发 病 风 险 和 预 后 或 者 治 疗 效 果 是 发 展 和 建 立 精 准 医 学 的 一 个 重 要 前 东 北 大 学 中 荷 生 物 医 学 与 信 息 工 程 学 院 2016 年 度 生 物 医 学 与 信 息 工 程 论 坛 会 议 时 间 2016 年 6 月 8 日, 星 期 三,9:30 至 16:00 会 议 地 址 会 议 网 址 主 办 单 位 东 北 大 学 浑 南 校 区 沈 阳 市 浑 南 区 创 新 路 195 号 生 命 科 学 大 楼 B 座 619 报 告 厅 http://www.bmie.neu.edu.cn

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF ( ) 2-1 p33 3-1 p78 3-2 p79 3-3 p80 3-4 p90 4-1 p95 4-2 p97 4-3 p100 4-4 p103 4-5 p105 4-6 p107 4-7 p108 4-8 p108 4-9 p112 4-10 p114 4-11 p117 4-12 p119 4-13 p121 4-14 p123 4-15 p124 4-16 p131 4-17 p133

More information

untitled

untitled Co-integration and VECM Yi-Nung Yang CYCU, Taiwan May, 2012 不 列 1 Learning objectives Integrated variables Co-integration Vector Error correction model (VECM) Engle-Granger 2-step co-integration test Johansen

More information

WTO

WTO 10384 X0115018 UDC MBA 2004 5 14 2004 6 1 WTO 2004 2006 7 2 Abstract According to the promise after our country enter into WTO, our country will open the readymade oil retail market in the end of 2004

More information

untitled

untitled II I Abstract Abstract This thesis mainly approaches Wu Wengying s ci poetry through his different class artistic style, and make a subject comment on the controversy of whether its has modernist element

More information

1 * 1 *

1 * 1 * 1 * 1 * taka@unii.ac.jp 1992, p. 233 2013, p. 78 2. 1. 2014 1992, p. 233 1995, p. 134 2. 2. 3. 1. 2014 2011, 118 3. 2. Psathas 1995, p. 12 seen but unnoticed B B Psathas 1995, p. 23 2004 2006 2004 4 ah

More information

Microsoft PowerPoint - Model Checking a Lazy Concurrent List-Based Set Algorithm.ppt [Compatibility Mode]

Microsoft PowerPoint - Model Checking a Lazy Concurrent List-Based Set Algorithm.ppt [Compatibility Mode] Model Checking a Lazy Concurrent List-Based Set Algorithm ZHANG Shaojie, LIU Yang National University of Singapore Agenda Introduction Background Ourapproach Overview Linearizabilitydefinition Modelinglanguage

More information

1990-1997 1980-1997 Abstract The relationship between human resource development and economy increase has been an important research item with the coming of knowledge economy. In this paper, ahead item

More information

Value Chain ~ (E-Business RD / Pre-Sales / Consultant) APS, Advanc

Value Chain ~ (E-Business RD / Pre-Sales / Consultant) APS, Advanc Key @ Value Chain fanchihmin@yahoo.com.tw 1 Key@ValueChain 1994.6 1996.6 2000.6 2000.10 ~ 2004.10 (E- RD / Pre-Sales / Consultant) APS, Advanced Planning & Scheduling CDP, Collaborative Demand Planning

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

Chun- Chao Tseng Far East colledge Abstract This study focuses on the school administration which is closely related to whether the administrative aff

Chun- Chao Tseng Far East colledge Abstract This study focuses on the school administration which is closely related to whether the administrative aff The Research of nowadays amateur English Education In Chinese University The high school of Chi-Fu area as an example- 389 Chun- Chao Tseng Far East colledge Abstract This study focuses on the school administration

More information

徐汇教育214/3月刊 重 点 关 注 高中生异性交往的小团体辅导 及效果研究 颜静红 摘 要 采用人际关系综合诊断量表 郑日昌编制并 与同性交往所不能带来的好处 带来稳定感和安全感 能 修订 对我校高一学生进行问卷测量 实验组前后测 在 够度过更快乐的时光 获得与别人友好相处的经验 宽容 量表总分和第 4 项因子分 异性交往困扰 上均有显著差 大度和理解力得到发展 得到掌握社会技术的机会 得到 异

More information

Abstract Today, the structures of domestic bus industry have been changed greatly. Many manufacturers enter into the field because of its lower thresh

Abstract Today, the structures of domestic bus industry have been changed greatly. Many manufacturers enter into the field because of its lower thresh SWOT 5 Abstract Today, the structures of domestic bus industry have been changed greatly. Many manufacturers enter into the field because of its lower threshold. All of these lead to aggravate drastically

More information

9, : Java 19., [4 ]. 3 Apla2Java Apla PAR,Apla2Java Apla Java.,Apla,,, 1. 1 Apla Apla A[J ] Get elem (set A) A J A B Intersection(set A,set B) A B A B

9, : Java 19., [4 ]. 3 Apla2Java Apla PAR,Apla2Java Apla Java.,Apla,,, 1. 1 Apla Apla A[J ] Get elem (set A) A J A B Intersection(set A,set B) A B A B 25 9 2008 9 M ICROEL ECTRON ICS & COMPU TER Vol. 25 No. 9 September 2008 J ava 1,2, 1,2, 1,2 (1, 330022 ; 2, 330022) :,. Apla - Java,,.. : PAR ;Apla - Java ; ;CMP ; : TP311 : A : 1000-7180 (2008) 09-0018

More information

K301Q-D VRT中英文说明书141009

K301Q-D VRT中英文说明书141009 THE INSTALLING INSTRUCTION FOR CONCEALED TANK Important instuction:.. Please confirm the structure and shape before installing the toilet bowl. Meanwhile measure the exact size H between outfall and infall

More information

<4D6963726F736F667420576F7264202D20BEDBC9B3B3C9CBFEA1AAA1AAC9CCBDADBDCCD3FDCEC4BCAF20A3A8D6D0A3A92E646F63>

<4D6963726F736F667420576F7264202D20BEDBC9B3B3C9CBFEA1AAA1AAC9CCBDADBDCCD3FDCEC4BCAF20A3A8D6D0A3A92E646F63> 高 等 教 育 初 步 探 讨 高 等 学 校 党 委 书 记 和 校 长 的 岗 位 职 责 内 容 提 要 : 2003 年 出 版 的 高 等 教 育 杂 志, 几 乎 每 期 都 有 探 讨 高 等 学 校 党 委 领 导 下 的 校 长 分 工 负 责 制 的 文 章 我 以 为, 这 些 文 章 所 涉 及 的 中 心 问 题 是 高 等 学 校 党 委 书 记 和 校 长 谁 是 一

More information

Microsoft PowerPoint - L17_Inheritance_v4.pptx

Microsoft PowerPoint - L17_Inheritance_v4.pptx C++ Programming Lecture 17 Wei Liu ( 刘 威 ) Dept. of Electronics and Information Eng. Huazhong University of Science and Technology May. 2015 Lecture 17 Chapter 20. Object-Oriented Programming: Inheritance

More information

Microsoft Word - A200810-897.doc

Microsoft Word - A200810-897.doc 基 于 胜 任 特 征 模 型 的 结 构 化 面 试 信 度 和 效 度 验 证 张 玮 北 京 邮 电 大 学 经 济 管 理 学 院, 北 京 (100876) E-mail: weeo1984@sina.com 摘 要 : 提 高 结 构 化 面 试 信 度 和 效 度 是 面 试 技 术 研 究 的 核 心 内 容 近 年 来 国 内 有 少 数 学 者 探 讨 过 基 于 胜 任 特 征

More information

13 A DSS B DSS C DSS D DSS A. B. C. CPU D. 15 A B Cache C Cache D L0 L1 L2 Cache 16 SMP A B. C D 17 A B. C D A B - C - D

13 A DSS B DSS C DSS D DSS A. B. C. CPU D. 15 A B Cache C Cache D L0 L1 L2 Cache 16 SMP A B. C D 17 A B. C D A B - C - D 2008 1 1 A. B. C. D. UML 2 3 2 A. B. C. D. 3 A. B. C. D. UML 4 5 4 A. B. C. D. 5 A. B. C. D. 6 6 A. DES B. RC-5 C. IDEA D. RSA 7 7 A. B. C. D. TCP/IP SSL(Security Socket Layer) 8 8 A. B. C. D. 9 9 A. SET

More information

Microsoft Word - Final Exam Review Packet.docx

Microsoft Word - Final Exam Review Packet.docx Do you know these words?... 3.1 3.5 Can you do the following?... Ask for and say the date. Use the adverbial of time correctly. Use Use to ask a tag question. Form a yes/no question with the verb / not

More information

2015 Chinese FL Written examination

2015 Chinese FL Written examination Victorian Certificate of Education 2015 SUPERVISOR TO ATTACH PROCESSING LABEL HERE Letter STUDENT NUMBER CHINESE FIRST LANGUAGE Written examination Monday 16 November 2015 Reading time: 11.45 am to 12.00

More information

南華大學數位論文

南華大學數位論文 南華大學 碩士論文 中華民國九十五年六月十四日 Elfin Excel I II III ABSTRACT Since Ming Hwa Yuan Taiwanese Opera Company started to cooperate with the Chinese orchestra, the problem of how the participation of Chinese music

More information

彩色地图中道路的识别和提取

彩色地图中道路的识别和提取 9310016, i ii Abstract This thesis is on the researching of recognizing the roads in map image by computer. Based on the theory of Pattern Recognition, there is a method to be discussed, which can recognize

More information

Microsoft Word - 物件導向編程精要.doc

Microsoft Word - 物件導向編程精要.doc Essential Object-Oriented Programming Josh Ko 2007.03.11 object-oriented programming C++ Java OO class object OOP Ruby duck typing complexity abstraction paradigm objects objects model object-oriented

More information

Microsoft Word - 第四組心得.doc

Microsoft Word - 第四組心得.doc 徐 婉 真 這 四 天 的 綠 島 人 權 體 驗 營 令 我 印 象 深 刻, 尤 其 第 三 天 晚 上 吳 豪 人 教 授 的 那 堂 課, 他 讓 我 聽 到 不 同 於 以 往 的 正 義 之 聲 轉 型 正 義, 透 過 他 幽 默 熱 情 的 語 調 激 起 了 我 對 政 治 的 興 趣, 願 意 在 未 來 多 關 心 社 會 多 了 解 政 治 第 一 天 抵 達 綠 島 不 久,

More information

Microsoft PowerPoint - NCBA_Cattlemens_College_Darrh_B

Microsoft PowerPoint - NCBA_Cattlemens_College_Darrh_B Introduction to Genetics Darrh Bullock University of Kentucky The Model Trait = Genetics + Environment Genetics Additive Predictable effects that get passed from generation to generation Non-Additive Primarily

More information

2009 Japanese First Language Written examination

2009 Japanese First Language Written examination Victorian Certificate of Education 2009 SUPERVISOR TO ATTACH PROCESSING LABEL HERE STUDENT NUMBER Letter Figures Words JAPANESE FIRST LANGUAGE Written examination Monday 16 November 2009 Reading time:

More information

國家圖書館典藏電子全文

國家圖書館典藏電子全文 i ii Abstract The most important task in human resource management is to encourage and help employees to develop their potential so that they can fully contribute to the organization s goals. The main

More information

4. 每 组 学 生 将 写 有 习 语 和 含 义 的 两 组 卡 片 分 别 洗 牌, 将 顺 序 打 乱, 然 后 将 两 组 卡 片 反 面 朝 上 置 于 课 桌 上 5. 学 生 依 次 从 两 组 卡 片 中 各 抽 取 一 张, 展 示 给 小 组 成 员, 并 大 声 朗 读 卡

4. 每 组 学 生 将 写 有 习 语 和 含 义 的 两 组 卡 片 分 别 洗 牌, 将 顺 序 打 乱, 然 后 将 两 组 卡 片 反 面 朝 上 置 于 课 桌 上 5. 学 生 依 次 从 两 组 卡 片 中 各 抽 取 一 张, 展 示 给 小 组 成 员, 并 大 声 朗 读 卡 Tips of the Week 课 堂 上 的 英 语 习 语 教 学 ( 二 ) 2015-04-19 吴 倩 MarriottCHEI 大 家 好! 欢 迎 来 到 Tips of the Week! 这 周 我 想 和 老 师 们 分 享 另 外 两 个 课 堂 上 可 以 开 展 的 英 语 习 语 教 学 活 动 其 中 一 个 活 动 是 一 个 充 满 趣 味 的 游 戏, 另 外

More information

2. 3. 1 2 TI 3 TI TABLE 4 RANDBIN 5 6 172 6 Research of Modern Basic Education 2012 6

2. 3. 1 2 TI 3 TI TABLE 4 RANDBIN 5 6 172 6 Research of Modern Basic Education 2012 6 6 2012 6 Research of Modern Basic Education Vol. 6 June 2012 201200 20 1. G 1976-171 2. 3. 1 2 TI 3 TI TABLE 4 RANDBIN 5 6 172 6 Research of Modern Basic Education 2012 6 1 GPS 4. 01 TI - nspire cx 1.

More information

快乐蜂(Jollibee)快餐连锁店 的国际扩张历程

快乐蜂(Jollibee)快餐连锁店 的国际扩张历程 Case6 Jollibee Foods Corporation Jollibee FAN Libo Case Synopsis (1) The case opens with a trigger issue focused on three investment decisions facing the international division new manager, Noli Tingzon.

More information

1.3

1.3 Software Engineering 软 件 工 程 Prof. Mei Hong 洪 玫 College of Computer Science and Software Engineering 四 川 大 学 计 算 机 ( 软 件 学 院 ) E-Mail: hongmei@scu.edu.cn Office: B502, Second Laboratory Building, Jiangan

More information

a b

a b 38 3 2014 5 Vol. 38 No. 3 May 2014 55 Population Research + + 3 100038 A Study on Implementation of Residence Permit System Based on Three Local Cases of Shanghai Chengdu and Zhengzhou Wang Yang Abstract

More information

Microsoft PowerPoint - ARC110_栾跃.ppt

Microsoft PowerPoint - ARC110_栾跃.ppt ARC110 软 件 构 架 设 计 的 原 则 和 指 南 课 程 内 容 概 述 介 绍 和 引 言 软 件 构 架 和 构 架 师 软 件 构 架 的 设 计 模 式 框 架 和 参 照 设 计 自 我 介 绍 第 一 代 自 费 留 学 生 : 美 国 南 伊 利 诺 州 立 大 学 (SIUE) 电 机 工 程 学 士 (1984) 及 硕 士 学 位 (1985) 历 任 OwensIllinois,

More information

2010 Japanese First Language Written examination

2010 Japanese First Language Written examination Victorian Certificate of Education 2010 SUPERVISOR TO ATTACH PROCESSING LABEL HERE STUDENT NUMBER Letter Figures Words JAPANESE FIRST LANGUAGE Written examination Monday 15 November 2010 Reading time:

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF 93 2 () ()A Study of Virtual Project Team's Knowledge Integration and Effectiveness - A Case Study of ERP Implementation N924020024 () () ()Yu ()Yuan-Hang () ()Ho,Chin-Fu () ()Virtual Team,Knowledge Integration,Project

More information

ABSTRACT ABSTRACT Based on analyzing public corporation in foreign countries, this paper studies basic theories of public legal establishment, with our country s reality in the social transferring period

More information

Microsoft Word - 33-p0191-14skyd8.doc

Microsoft Word - 33-p0191-14skyd8.doc 第 20 卷 第 4 期 中 南 大 学 学 报 ( 社 会 科 学 版 ) Vol.20 No.4 2014 年 8 月 J. CENT. SOUTH UNIV. (SOCIAL SCIENCE) Aug. 2014 基 于 模 糊 层 次 分 析 法 的 政 府 干 部 胜 任 力 评 价 实 证 研 究 薛 琴 ( 南 京 工 程 学 院 经 济 与 管 理 学 院, 江 苏 南 京,211167)

More information

2011第1期第二部分

2011第1期第二部分 中 国 农 学 通 报 2011,27(01):466-470 Chinese Agricultural Science Bulletin 关 于 农 业 信 息 化 与 农 村 信 息 化 关 系 的 探 讨 高 万 林, 张 港 红, 李 桢, 赵 佳 宁 ( 中 国 农 业 大 学 信 息 与 电 气 工 程 学 院, 北 京 100083) 摘 要 : 文 章 通 过 分 析 农 业 农 村

More information

2009 Korean First Language Written examination

2009 Korean First Language Written examination Victorian Certificate of Education 2009 SUPERVISOR TO ATTACH PROCESSING LABEL HERE STUDENT NUMBER Letter Figures Words KOREAN FIRST LANGUAGE Written examination Tuesday 20 October 2009 Reading time: 2.00

More information

Microsoft Word - 01李惠玲ok.doc

Microsoft Word - 01李惠玲ok.doc 康 寧 學 報 11:1-20(2009) 1 數 位 學 習 於 護 理 技 術 課 程 之 運 用 與 評 值 * 李 惠 玲 ** 高 清 華 *** 呂 莉 婷 摘 要 背 景 : 網 路 科 技 在 教 育 的 使 用 已 成 為 一 種 有 利 的 教 學 輔 助 工 具 網 路 教 學 的 特 性, 在 使 學 習 可 不 分 時 間 與 空 間 不 同 進 度 把 握 即 時 性 資

More information

Abstract The adult higher education is a vital part of the higher education. As an essential tache of selecting qualified students, the adult college entrance examination plays an important role in securing

More information

Microsoft PowerPoint - TTCN-Introduction-v5.ppt

Microsoft PowerPoint - TTCN-Introduction-v5.ppt Conformance Testing and TTCN 工研院無線通訊技術部林牧台 / Morton Lin 03-5912360 mtlin@itri.org.tw 1 Outline Introduction and Terminology Conformance Testing Process 3GPP conformance testing and test cases A real world

More information

Microsoft Word - A201210-60_1349949005.doc

Microsoft Word - A201210-60_1349949005.doc 5 10 15 20 25 一 种 针 对 在 线 旅 游 线 路 网 页 判 别 算 法 的 研 究 与 实 现 徐 显 炼, 郭 燕 慧 ( 北 京 邮 电 大 学 信 息 安 全 中 心, 北 京 100876) 摘 要 : 随 着 近 年 来 在 线 旅 游 业 的 快 速 发 展, 在 线 旅 游 搜 索 引 擎 己 经 成 为 当 前 搜 索 引 擎 发 展 的 一 个 热 门 方 向

More information

Windows XP

Windows XP Windows XP What is Windows XP Windows is an Operating System An Operating System is the program that controls the hardware of your computer, and gives you an interface that allows you and other programs

More information

Theory of Groups is another course for undergraduates; and Module Theory will be a basic course of graduates). The main contents include the basic str

Theory of Groups is another course for undergraduates; and Module Theory will be a basic course of graduates). The main contents include the basic str 抽 象 代 数 课 程 教 学 大 纲 课 程 基 本 信 息 (Course Information) 课 程 代 码 (Course Code) * 学 时 MA20 (Credit Hours) 6 * 学 分 (Credits) * 课 程 名 称 抽 象 代 数 (Course Name) Abstract Algebra 课 程 性 质 (Course Type) 必 修 课 授 课 对

More information

Microsoft Word - 24217010311110028谢雯雯.doc

Microsoft Word - 24217010311110028谢雯雯.doc HUAZHONG AGRICULTURAL UNIVERSITY 硕 士 学 位 论 文 MASTER S DEGREE DISSERTATION 80 后 女 硕 士 生 择 偶 现 状 以 武 汉 市 七 所 高 校 为 例 POST-80S FEMALE POSTGRADUATE MATE SELECTION STATUS STUDY TAKE WUHAN SEVEN UNIVERSITIES

More information

<4D6963726F736F667420576F7264202D2035B171AB73B6CBA8ECAB73A6D3A4A3B6CBA158B3AFA46CA9F9BB50B169A445C4D6AABAB750B94AB8D6B9EFA4F1ACE3A873>

<4D6963726F736F667420576F7264202D2035B171AB73B6CBA8ECAB73A6D3A4A3B6CBA158B3AFA46CA9F9BB50B169A445C4D6AABAB750B94AB8D6B9EFA4F1ACE3A873> 中 正 漢 學 研 究 2012 年 第 一 期 ( 總 第 十 九 期 ) 2012 年 6 月 頁 111~134 國 立 中 正 大 學 中 國 文 學 系 111 從 哀 傷 到 哀 而 不 傷 : 陳 子 昂 與 張 九 齡 的 感 遇 詩 對 比 研 究 * 丁 涵 摘 要 在 中 國 古 典 文 學 語 境 中, 一 個 主 題 的 奠 立 往 往 需 要 歷 時 彌 久, 而 這 本

More information

10384 X9908009 UDC Study On Causation Of Civil Tort Liability 2004 4 2004 2004 2004 4 [M] 1991476 [M] 1996635 ABSTRACT ABSTRACT Theory of causation, which is the most complicated and thorny of tort law,

More information

中国科学技术大学学位论文模板示例文档

中国科学技术大学学位论文模板示例文档 University of Science and Technology of China A dissertation for doctor s degree An Example of USTC Thesis Template for Bachelor, Master and Doctor Author: Zeping Li Speciality: Mathematics and Applied

More information

2005 3,, :,,,, (),,,,, [],,,,,,,,,,, (),, (,, ),,,,,,,,,,,,,,,,,,,,,,,,,( ),, :,,, :,?,,, :,1999,

2005 3,, :,,,, (),,,,, [],,,,,,,,,,, (),, (,, ),,,,,,,,,,,,,,,,,,,,,,,,,( ),, :,,, :,?,,, :,1999, (), 70,,,,,, :,31, 1555,;18,,, ;,, (1895),, 1 2005 3,, :,,,, (),,,,, [],,,,,,,,,,, (),, (,, ),,,,,,,,,,,,,,,,,,,,,,,,,( ),, :,,, :,?,,, :,1999,24 25 2 (),,,,,,, 1970,,,,,, ;,; :,,?? 1988,,, 1987 1990,,,

More information

课题调查对象:

课题调查对象: 1 大 陆 地 方 政 府 大 文 化 管 理 职 能 与 机 构 整 合 模 式 比 较 研 究 武 汉 大 学 陈 世 香 [ 内 容 摘 要 ] 迄 今 为 止, 大 陆 地 方 政 府 文 化 管 理 体 制 改 革 已 经 由 试 点 改 革 进 入 到 全 面 推 行 阶 段 本 文 主 要 通 过 结 合 典 型 调 查 法 与 比 较 研 究 方 法, 对 已 经 进 行 了 政 府

More information

The Relationship between General Education and Civil Service Exams: An Example of Constitution-Teaching. Shian-Mou Liau Abstract In 2010, the total nu

The Relationship between General Education and Civil Service Exams: An Example of Constitution-Teaching. Shian-Mou Liau Abstract In 2010, the total nu * 99 92 * Associate Professor, The General Education Center of Chaoyang University of Technology 155 The Relationship between General Education and Civil Service Exams: An Example of Constitution-Teaching.

More information

<5B BECBB0EDB8AEC1F25D312D34B0AD5FC3E2BCAEBCF6BEF7C0DAB7E F31702E504446>

<5B BECBB0EDB8AEC1F25D312D34B0AD5FC3E2BCAEBCF6BEF7C0DAB7E F31702E504446> : 2 = 3 4? 0 an ordered set of unambiguous, executable steps that produces a result and terminates in a finite time (computational theory) ( ) 5 6 (C-) int min, max; float degree, b; char ch, token; /,,,

More information

BC04 Module_antenna__ doc

BC04 Module_antenna__ doc http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 1 of 10 http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 2 of 10 http://www.infobluetooth.com TEL:+86-23-68798999

More information

<4D6963726F736F667420576F7264202D20B5DAC8FDB7BDBE57C9CFD6A7B8B6D6AEB7A8C2C98696EE7DCCBDBEBF2E646F63>

<4D6963726F736F667420576F7264202D20B5DAC8FDB7BDBE57C9CFD6A7B8B6D6AEB7A8C2C98696EE7DCCBDBEBF2E646F63> 題 目 : 第 三 方 網 上 支 付 之 法 律 問 題 探 究 Title:A study on legal issues of the third-party online payment 姓 名 Name 學 號 Student No. 學 院 Faculty 課 程 Program 專 業 Major 指 導 老 師 Supervisor 日 期 Date : 王 子 瑜 : 1209853J-LJ20-0021

More information

,,,,, (,1988: 630) 218

,,,,, (,1988: 630) 218 * 1 19 20 * 1,,,,, (,2006) 217 2018. 1 1959 453 1959 472 1 20 20 1928 1929 2014 20 30 1,,,,, (,1988: 630) 218 2003 405 1930 2005 1 2005 2 20 20 1930 2003 405 1934 1936 2003 411 2003 413 2005 206 2005 219

More information

Microsoft Word - 06会计学(223-230).doc

Microsoft Word - 06会计学(223-230).doc 经 济 管 理 学 院 会 计 学 会 计 学 专 (120203K) 培 养 方 案 (The Cultivating Program for Undergraduate of Accounting) 一 专 简 介 及 特 色 专 简 介 : 会 计 是 以 货 币 为 主 要 计 量 单 位, 采 用 一 系 列 专 门 的 方 法 和 程 序, 对 经 济 交 易 或 事 项 进 行 连 续

More information

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I 2004 5 IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I Abstract The techniques of digital video processing, transferring

More information

096STUT DOC

096STUT DOC i YouTube was established in 2005 until now only more than 3 years. Although it was established just more than 3 years, it has already become the one of multitudinous video shares website that most people

More information

C/C++程序设计 - 字符串与格式化输入/输出

C/C++程序设计 - 字符串与格式化输入/输出 C/C++ / Table of contents 1. 2. 3. 4. 1 i # include # include // density of human body : 1. 04 e3 kg / m ^3 # define DENSITY 1. 04 e3 int main ( void ) { float weight, volume ; int

More information