六级高频词组2

2023-12-12 13:45
文章标签 高频 六级 词组

本文主要是介绍六级高频词组2,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

aa7a1f839c6f490eaca879119de8f60a.png

目录

 

词组

参考链接 


 

词组

51. arise from(=be caused by) 由…引起。

52. arrange for sb.sth. to do sth. 安排…做…

53. arrive on 到达;

arrive at 到达某地(小地方);得出,作出;

arrive in 到达某地(大地方);

54. be ashamed of (=feel shame, guilt or sorrow because of sth. done) 以… 为羞耻

55. assure sb. of sth. (=try to cause to believe or trust in sth.) 向…保证, 使…确信。

56. attach(to)(=to fix, fasten;join) 缚, 系 ,结

57. make an attempt at doing sth. (to do sth.) 试图做…

58. attend to (=give one's attention, care and thought)注意,照顾;

attend on(upon)(=wait upon, serve, look after) 侍候,照料

59. attitude to toward …对…的态度、看法

60. attribute…to…(=to believe sth. to be the result of…)把……归因于……, 认为……是……的结果

61. on the average (=on average, on an average) 平均

62. (be) aware of (=be conscious of , having knowledge or consciousness)意识到,知道。

63. at the back of (=behind) 在…后面

64. in the back of 在…后部(里面);

on the back of 在…后部(外面);

be on one's back(=be ill in bed) 卧病不起。

65. at one's back(=supporting or favoring sb.) 支持,维护;

have sb. at one 's back 有…支持, 有…作后台

66. turn one's back on sb. (=turn away from sb. in an impolite way) 不理睬(某人),背弃,抛弃

67. behind one's back 背着某人(说坏话)

68. be based on upon 基于

69. on the basis of 根据…, 在…基础上

70. beat…at 在…运动项目上打赢

71. begin with 以…开始。

to begin with (=first of all) 首先, 第一(经常用于开始语)

72. on behalf of (=as the representative of) 以…名义

73. believe in(=have faith or trust in;consider sth.sb. to be true) 相信,依赖,信仰。

74. benefit (from) 受益,得到好处。

75. for the benefit of 为了…的利益(好处)

76. for the better 好转

77. get the better of (=defeat sb.) 打败, 胜过。

78. by birth 在出生上,论出身,按血统

at birth 在出生时;

give birth to 出生

79. blame sb. for sth. 因…责备某人 .

blame sth. on sb. 把…推在某人身上

80. in blossom开花(指树木)

be in blossom开花(强调状态)

come into blossom开花(强调动作)

81. on board 到船上, 在船上, 上火车或飞机

82. boast of (or about) 吹嘘

83. out of breath 喘不过气来

84. in brief(=in as few words as possible)简言之

85. in bulk 成批地,不散装的

86. take the floor 起立发言

87. on business 出差办事。

88. be busy with sth.于某事 .

be busy doing sth. 忙于做某事

89. last but one 倒数第二。

90. but for (=without) 要不是。表示假设

91. buy sth. for…money 用多少钱买

92. be capable of 能够, 有能力

be capable of being +过去分词是能够被…的

93. in any case(=for love or money, at any rate, at any price, at any cost , whatever happens;anyhow)无论如何

94. in case (=for fear that) 万一;

95. in case of (=in the event of)如果发生…万一

in the case of 至于…, 就…而言

96. in no case在任何情况下都不(放句首倒装句)

97. be cautious of 谨防

98. center one's attention on(=focus one's attention on) 把某人的注意力集中在…上

99. be certain of (=be sure of) 有把握, 一定。

100. for certain of (=for sure )肯定地,有把握地

 

 

参考链接 

六级高频词组1-CSDN博客

【备考干货】600条四六级高频词组,值得收藏!

 

这篇关于六级高频词组2的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/484850

相关文章

力扣第347题 前K个高频元素

前言 记录一下刷题历程 力扣第347题 前K个高频元素 前K个高频元素 原题目: 分析 我们首先使用哈希表来统计数字出现的频率,然后我们使用一个桶排序。我们首先定义一个长度为n+1的数组,对于下图这个示例就是长度为7的数组。为什么需要一个长度为n+1的数组呢?假如说总共有三个数字都为1,那么我们需要把这个1放在数组下标为3的位置,假如说数组长度为n,对于这个例子就是长度为3,那么它的

【Hot100】LeetCode—347. 前 K 个高频元素

目录 1- 思路自定义Node结点 + 哈希表实现 2- 实现⭐347. 前 K 个高频元素——题解思路 3- ACM实现 原题连接:347. 前 K 个高频元素 1- 思路 自定义Node结点 + 哈希表实现 ① 自定义 Node 结点: 自定义 Node 结点中有 value 和 cnt 字段,其中 value 为具体的数字,cnt 为具体的值实现 ① getCn

嵌入式开发高频面试题——第五章 Linux操作系统常见面试题(上)

目录 5.1.1 Linux内核的组成5.1.2 用户空间与内核通信方式有哪些?5.1.3 系统调用read()/write(),内核具体做了哪些事情5.1.4 系统调用的作用5.1.5 内核态,用户态的区别5.1.6 Bootloader、内核、根文件系统的关系5.1.7 Bootloader多数有两个阶段的启动过程5.1.8 Linux的内核是由Bootloader装载到内存中的?5.1

嵌入式开发高频面试题——第四章 常见算法(下)

目录 4.2.1 Vector和List的异同4.2.2 Vector的内存增长与底层实现4.2.3 Vector和Deque的比较4.2.4 STL里有sort函数,为什么list还要定义sort?4.2.5 STL底层数据结构实现4.2.6 利用迭代器删除元素会发生什么?4.2.7 Map的实现与查找效率4.2.8 几种模板插入的时间复杂度 4.2.1 Vector和Lis

【滑动窗口】| 力扣高频题: 长度最小的数组

🎗️ 主页:小夜时雨 🎗️专栏:算法题 🎗️如何活着,是我找寻的方向 目录 1. 题目解析2. 代码 1. 题目解析 题目链接: https://leetcode.cn/problems/minimum-size-subarray-sum/description/ (可点击) 本道题是滑动窗口的一道经典应用问题:找出数组中长度最小的子数组。 滑动窗口优化思

【TS高频面试题】interface与type的区别

参考文章 一、基本概念 1. type(类型别名) 用来给一个类型起新名字,使用 type 创建类型别名。 2. interface(接口) 专门用于定义对象的结构(比如属性和方法) 二、相同点 (1)都可以描述对象或函数 interface interface User {name: stringage: number}interface SetUser {(name: st

Leetcode Question 高频 和 分类

Leetcode Question Difficulty and Frequency 题目分类: Dynamic Programming Edit DistanceMaximum SubarrayMinimum Path SumUnique PathsUnique Paths IILongest Palindromic SubstringInterleaving StringT

嵌入式开发高频面试题——第四章 常见算法(上)

目录 4.1 排序算法4.1.1 **各种排序算法的时间空间复杂度、稳定性** ⭐⭐⭐⭐⭐4.1.2 **各种排序算法什么时候有最好情况、最坏情况(尤其是快排)** ⭐⭐⭐⭐ 4.1.3 **冒泡排序** ⭐⭐⭐⭐4.1.4 **选择排序** ⭐⭐⭐⭐4.1.5 **插入排序** ⭐⭐⭐⭐4.1.6 **希尔排序** ⭐⭐⭐⭐4.1.7 **归并排序** ⭐⭐⭐⭐4.1.8 **快速排序**

二叉树高频题目-下-不含树型dp

二叉树高频题目-下-不含树型dp 题目1 : 普通二叉树上寻找两个节点的最近公共祖先(lca问题) 测试链接 : https://leetcode.cn/problems/lowest-common-ancestor-of-a-binary-search-tree/ 思路 分别在该树的左右子树上搜索, 当该树为 空 或 p 或 q, 直接返回 若返回的是p 或 q , 那么该结点会一直向上

代码随想录 -- 栈与队列 -- 前 K 个高频元素

347. 前 K 个高频元素 - 力扣(LeetCode) 思路:         定义字典 dic1:记录 nums 中元素出现的次数,key 是元素的值,value 是元素出现的次数;         定义字典 dic2:key 是出现的次数,value 是出现对应次数的元素列表;         定义数组 arr 对 dic2 的 key 进行降序排序;         输出 di