Lesson 51-52 Pet-people

1 resemble 与..类似 ivory 象牙,乳白色n,adj  spinet小型钢琴

   eg. His nails resemble the ivory keys of the spinet.他的指甲象白色的琴键一样

2 wander around闲逛

3 mice老鼠(mouse的复数),胆小的人n

   reptile爬行动物 eg. 30 percent of reptiles,birds,and fish are currentily threatened with extinction.目前,30%的爬行动物、鸟类和鱼类面临灭绝的危险。

4 eager to 渴望,急于 eg. She sounded less and less eager to return to Ireland.听她话音,她回爱尔兰的热情似乎日渐消退

5 turn over 翻转 eg. I don’t think you thought to turn over the tape,did you?我认为你并没想过要把磁带换一面,是吗?

            仔细考虑 eg. Even when she didn’t say anything, you could see her turning things over in her mind.即便她什么都没说,你也能看出她心里在盘算着

          推卸,移交 eg. Parliamentarians were eager to turn over responsibility for the decision.经验老到的议员急于把作决策的责任推卸给他人。

6 contrary相反的,顽固的 educated受到教育的,训练的

eg.Cats are bright but too contrary to get educated.猫很机灵,但是太顽固不好驯服。

7 herder牧羊人 burglar盗贼 fascinate使着迷 devoutly虔诚地,衷心地

eg. I believed devoutly in her power to fascinate him,in her dazzling loveliness.我由衷地相信她有使他神魂颠倒的力量,相信她有令人眼花缭乱的姿色

8 slimy 黏糊糊的,泥泞的 eg. His feet slipped in the slimy mud.他的脚在泥泞中不住地打滑。

           卑鄙的 eg. I’ve worked hard for what I have and I don’t want it taken away by some slimy business partner. 我辛辛苦苦才挣到了这一切,我不希望它们被某个卑鄙的生意伙伴夺走

9 docile 温顺的,驯服的 eg. docile,obedient children.温顺、听话的孩子

10 do with 处理 eg.What shall we do with the leftovers.这些剩菜怎么处理?

                忍受,与...相处 eg. If we can’t afford beef,we have to do with pork.如果我们买不起牛肉, 猪肉也行。

Lesson 51-52 Pet-people

时间: 2024-08-08 22:00:50

Lesson 51-52 Pet-people的相关文章

那些年,一起学的Java 5-1 5-2

/**5-1 * 定义接口Printable,其中包括一个方法printItMyWay(), * 这个方法没有形参,返回值为空 **/ interface Printable { void printItMyWay(); } /**5-2 * 改写实验3中的矩形类,使之实现Printable接口, * 用printItMyWay()方法将矩形的相关信息(长.宽.周长.面积) * 打印在屏幕上; * 改写实验4中的正方形类,重载printItMyWay()方法 * 将正方形的相关信息(边长.周长.

[email protected] [51/52] N-Queens

https://leetcode.com/problems/n-queens/ 1 class Solution { 2 public: 3 void dfs(vector<vector<string>> &ret, vector<vector<char>> map,int i, int j){ 4 if(i==map.size()-1){ 5 vector<string> ans; ans.clear(); 6 for(int ki=0

[LeetCode 51&amp;52] N-Queens I &amp; II (N皇后问题)

题目链接:n-queens import java.util.ArrayList; import java.util.Arrays; import java.util.List; /** * The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens attack each other. Given an integer n, return all dist

51/52. N-Queens -- 待优化

经典的八皇后问题, queen 可以攻击的范围:  水平,垂直,斜向, 放置 queen 让所有的queens 不在对方的攻击范围内,问有多少种方法或者产生相应的棋盘. 分析: 依次产生每一行的结果, 先在某行某个位置放一个结果,如果不能产生解 则back tracking 到上一行,重新放置. 以 n=4 为例,每个位置都得分解 n=4 份, 算法复杂度为 n^n ,是一个很高的结果,因此当 n>12 时,测试用例都会TLE. 需要解决的问题: 1. 如果存储 每个位置, 可以定义一个Node

创造型设计模式-----工厂方法模式

工厂方法的作用是创造对象(生成产品),用来从一组实现特定逻辑的类中实例化某个对象.(多用于日志功能) 产品类:定义了工厂方法创建的对象接口 具体产品类:实现了产品类的接口 工厂类:创建产品类,声明工厂方法,返回一个产品类对象 具体工厂类:重写用于具体产品类对象的方法 例子 1 #include<iostream> 2 #include<stdio.h> 3 using namespace std; 4 class product { 5 6 public: 7 product();

Pet(dfs+vector)

Pet Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1754    Accepted Submission(s): 847 Problem Description One day, Lin Ji wake up in the morning and found that his pethamster escaped. He searc

杭电 4707 pet(并查集求元素大于k的集合)

Description One day, Lin Ji wake up in the morning and found that his pethamster escaped. He searched in the room but didn’t find the hamster. He tried to use some cheese to trap the hamster. He put the cheese trap in his room and waited for three da

hduoj 4707 Pet 2013 ACM/ICPC Asia Regional Online —— Warmup

http://acm.hdu.edu.cn/showproblem.php?pid=4707 Pet Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Problem Description One day, Lin Ji wake up in the morning and found that his pethamster escaped. He searched in th

转载---编写高质量代码:改善Java程序的151个建议(第3章:类、对象及方法___建议47~51)

阅读目录 建议47:在equals中使用getClass进行类型判断 建议48:覆写equals方法必须覆写hashCode方法 建议49:推荐覆写toString方法 建议50:使用package-info类为包服务 建议51:不要主动进行垃圾回收 回到顶部 建议47:在equals中使用getClass进行类型判断 本节我们继续讨论覆写equals的问题,这次我们编写一个员工Employee类继承Person类,这很正常,员工也是人嘛,而且在JavaBean中继承也很多见,代码如下: 1 p

Java知多少(51)finally

当异常被抛出,通常方法的执行将作一个陡峭的非线性的转向.依赖于方法是怎样编码的,异常甚至可以导致方法过早返回.这在一些方法中是一个问题.例如,如果一个方法打开一个文件项并关闭,然后退出,你不希望关闭文件的代码被异常处理机制旁路.finally关键字为处理这种意外而设计. finally创建一个代码块.该代码块在一个try/catch 块完成之后另一个try/catch出现之前执行.finally块无论有没有异常抛出都会执行.如果异常被抛出,finally甚至是在没有与该异常相匹配的catch子句