transit

  v.

Pass across or through (an area)

    The new large ships will be too big to transit the Panama Canal.

  n.

The carrying of people or things from on place to another

    The painting was damaged in transit.

  The action of passing through or across a place

    All chinese should have freedom of transit through any place in China. 

transition (change)

  n.

The process or a period of changing from one state or condition to another

    Making the transition from youth to adulthood can be very painful

  v.

Undergo or cause to undergo a process or period of transition

transmit (send, communicate, project)

  v.

  Send out electronic signals, messages etc using radio, televeision, or other similar equipment

    The system transmit information ove digital phone lines.

  Send or pass something from one person, pleace or thing to another.

    Mathematical knowledge is transmitted from teacher to student.

    Transmitted disease.

  Allow heat, light, sound, electricity, or other energy) to pass through a medium

    The three bones transmit sound wave to the inner ear.

transmission

  n.

  The action or process of transmitting something or the state of being transmitting

    Even the most simple information can be forgotten or distorted in the process of tranmission.

    Teaching and learning isn't just a matter of skill acquistion or knowledge transmission.

    A live transmission of the tennis championship.

  The mechanism by which power is transmitted from an engine to the axle in a motor vehicle

transport

  v.

Take or carry (people or goods) from one place to another by means of a vehicle, aircraft, or ship

    Trucks used for transporting oil.

    The statue was transported to London.

  Cause to feel that they are in another place or time

    One look, and I was transported back to childhood.

  n.

The system or means of conveying people or goods from place to place, sea/road/rail/air transport

     Improved rail transport is essential for business.

  The process or business of taking goods from one place to another

    Canals were used for the transport of goods.

transportation

  n.

  (American English) as same as transport

Traffic

  n.

  Vehicles moving along a road or street; The movement of airecraft, ships, or trains from one place to another

    rush-hour traffic, traffic noise, heavy traffic

    air traffice control

  The movement of people or goods by aircraft, ships, trains

    Most long-distance traffic of heavy goods is done by ships.

  Illegal deal, trade    

    drug traffic

transplant

  v.

  Replant a plant in another place

    Lift and transplant bulbs when they are becoming overcrowded.

transpose

  v.

  Change the order or position of two or more things

    When I tracked down Robyn's correct number to call her, I found that I had accidently transposed the last two digits.

transfer

  v.

Move from one place, school, job etc to another. or Make someone do this, especially within the same organization

    He intends to transfer the fund's assert to the Treasury.

    She tranfered to the HR department.  

transform

  v.

  Make a marked chagne in the form, nature, or appearance of

    He wanted to transform himself into a successful businessman.

  Change the voltage of an electric current

    The wind plant capture and transform wind energy into direct current electricity.

transformation

  n.

  A marked change in form, anture, or appearance

    British society underwent a radical transformation.

Words Prefixed Trans-的更多相关文章

  1. java项目调用kettleJob和Trans

    1.调用本地Job和Trans 较简单不用多说没有遇到任何问题,以下是代码: import org.pentaho.di.core.KettleEnvironment; import org.pent ...

  2. bdb mvcc: buffer 何时可以被 看到; mvcc trans何时被移除

    # txn.h struct __db_txnregion SH_TAILQ_HEAD(__active) active_txn; SH_TAILQ_HEAD(__mvcc) mvcc_txn; # ...

  3. BZOJ-1003 物流运输trans SPFA+DP

    傻逼错误耗我1h,没给全范围坑我1A.... 1003: [ZJOI2006]物流运输trans Time Limit: 10 Sec Memory Limit: 162 MB Submit: 529 ...

  4. 【BZOJ】【1003】【ZJOI2006】物流运输trans

    最短路/DP 这题数据规模并不大!!这是重点……… 所以直接暴力DP就好了:f[i]表示前 i 天的最小花费,则有$f[i]=min\{f[j]+cost[j+1][i]+k\} (0\leq j \ ...

  5. BZOJP1003 [ZJOI2006]物流运输trans

    BZOJP1003 [ZJOI2006]物流运输trans 1003: [ZJOI2006]物流运输trans Time Limit: 10 Sec  Memory Limit: 162 MB Sub ...

  6. BZOJ 1003 [ZJOI2006]物流运输trans

    1003: [ZJOI2006]物流运输trans Time Limit: 10 Sec  Memory Limit: 162 MBSubmit: 4242  Solved: 1765[Submit] ...

  7. bzoj1003[ZJOI2006]物流运输trans

    1003: [ZJOI2006]物流运输trans Description 物流公司要把一批货物从码头A运到码头B.由于货物量比较大,需要n天才能运完.货物运输过程中一般要转停好几个码头.物流公司通常 ...

  8. OpenJudge Trans

    #include<iostream>#include<cstdio>#include<algorithm>#include<cmath>#include ...

  9. BZOJ 1003: [ZJOI2006]物流运输trans(最短路+dp)

    1A,爽! cost[i][j]表示从第i天到第j天不改路线所需的最小花费,这个可以用最短路预处理出.然后dp(i)=cost[j][i]+dp(j-1)+c. c为该路线的花费. --------- ...

随机推荐

  1. Eclipse补全功能

    默认当输入 . 时会弹出提示补全, 如何设置 eclipse 代码自动补全,参考 http://jingyan.baidu.com/article/d45ad148b214a969552b8001.h ...

  2. 【Data Structure & Algorithm】 查找最小的k个元素

    查找最小的k个元素 题目:输入n个整数,输出其中最小的k个. 例如输入1, 2, 3, 4, 5, 6, 7和8这八个数字,则最小的4个数字为1, 2, 3和4. 分析:这道题最简单的思路是把输入的n ...

  3. UVaLive 3971 Assemble (水题二分+贪心)

    题意:你有b元钱,有n个配件,每个配件有各类,品质因子,价格,要每种买一个,让最差的品质因子尽量大. 析:很简单的一个二分题,二分品质因子即可,每次计算要花的钱的多少,每次尽量买便宜且大的品质因子. ...

  4. CSA Round #53 (Div. 2 only) Histogram Partition(模拟)

    传送门 题意 给出一个数组A,你有一个数组B(一开始全为0),询问多少次操作后B转化为A 一次操作:选择一段区间,加上某个正整数 分析 构建一个栈, 输入一个数,若当前栈空或栈顶元素比输入小,则加入栈 ...

  5. CodeForces717C 【数学】

    题意: 给你n个数既表示a类的值也表示b类的值,然后计算a和b类两两搭配相乘相加,使得答案最小: 思路: 显而易见的方案是最小乘最大,次小乘次大,然后依次下去.. 可以那个特例证明这个是对的 #inc ...

  6. hdu1848(sg函数打表)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1848 题意:中文题诶- 思路:直接sg函数打表就好了 代码: #include <iostrea ...

  7. JS实现 类的 1.判断 2.添加 3.删除 4切换

    <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title> ...

  8. tinymce 富文本简单使用

    tinymce.init({ //选择器 selector:'textarea', //配置顶部的菜单栏显示隐藏 menubar: false, //配置中文(默认没有中文包,需要到官网下载,放到la ...

  9. Codeforces Round #390 (Div. 2) B

    Ilya is an experienced player in tic-tac-toe on the 4 × 4 field. He always starts and plays with Xs. ...

  10. Elasticsearch之入门知识

    elasticsearch是一个高度可扩展得开源全文搜索和分析的引擎.可以快速.近实时的存储,搜索和分析大量数据.通常用作底层引擎技术,为具有复杂搜索功能和要求的程序提供支持. 用处: • 运行网上商 ...