transform人工智能(sift算法是不是人工智能)

2025-12-02 16:00:02 0

transform人工智能(sift算法是不是人工智能)

今天给各位分享sift算法是不是人工智能的知识,其中也会对sift算法是不是人工智能进行解释,如果能碰巧解决你现在面临的问题,别忘了关注本站,现在开始吧!

本文目录

sift算法是不是人工智能

  • sift算法是人工智能,算是人工智能的一种。


  • 尺度不变特征转换(Scale-invariant feature transform或SIFT)是一种电脑视觉的算法用来侦测与描述影像中的局部性特征,它在空间尺度中寻找极值点,并提取出其位置、尺度、旋转不变量,此算法由 David Lowe在1999年所发表,2004年完善总结。
    其应用范围包含物体辨识、机器人地图感知与导航、影像缝合、3D模型建立、手势辨识、影像追踪和动作比对。

unity3d ai是做什么的

Unity3d人工智能确定性AI算法。

核心代码:

using UnityEngine;

using System.Collections;

public class PlayObject : MonoBehaviour

{

public float moveVx;//x方向的分速度

public float moveVy;//y方向的分速度

/// 《summary》

/// 2维坐标(x,y)

/// 《/summary》

public Vector2 Position

{

get

{

return new Vector2(this.transform.position.x, this.transform.position.y);

}

}

private Vector2 _vHeading;

/// 《summary》

/// //设置导弹的前进方向的归一化向量m_vHeading

/// 《/summary》

public Vector2 vHeading

{

get

{

float length = Mathf.Sqrt(moveVx * moveVx + moveVy * moveVy);

if (length != 0)

{

_vHeading.x = moveVx / length;

_vHeading.y = moveVy / length;

}

return _vHeading;

}

}

private Vector2 _vSide;

/// 《summary》

/// 前进方向的垂直向量

/// 《/summary》

public Vector2 vSide

{

get

{

_vSide.x = -vHeading.y;

_vSide.y = vHeading.x;

return _vSide;

}

}

/// 《summary》

/// 速度向量

/// 《/summary》

public Vector2 Velocity

{

get

{

return new Vector2(moveVx, moveVy);

}

}

/// 《summary》

/// 速度标量

/// 《/summary》

public float Speed

{

get

{

return Mathf.Sqrt(moveVx * moveVx + moveVy * moveVy);

}

}

public float MaxSpeedRate;

// Use this for initialization

void Start()

{

}

// Update is called once per frame

void Update()

{

}

/// 《summary》

/// 移动物体

/// 《/summary》

/// 《param name="speedRate"》移动的速度率,一般为1《/param》

/// 《param name="isLookAtVelocityVector"》是否要这是速度矢量与物体的朝向一致《/param》

public void Move(float speedRate, bool isLookAtVelocityVector)

{

this.transform.position += new Vector3(moveVx * Time.deltaTime, moveVy * Time.deltaTime, 0) * speedRate;

//  Debug.Log("x:" + m_postion.x + "y:" + m_postion.y);

//调整导弹的朝向是的它和速度矢量合成方向一样

if (isLookAtVelocityVector)

{

LookAtVelocityVector();

}

}

/// 《summary》

/// 使得物体始终朝向矢量速度的方向

/// 《/summary》

void LookAtVelocityVector()

{

float zAngles = Mathf.Atan(moveVx / moveVy) * (-180 / Mathf.PI);

if (moveVy == 0)

{

zAngles = moveVx 》 0 ? -90 : 90;

//跟以往的计算角度不同的是,这里加了moveVx==0的独立判断,这样可以在不控制的时候保持原状态

if (moveVx == 0)

{

zAngles = this.transform.rotation.eulerAngles.z;

}

}

if (moveVy 《 0)

{

zAngles = zAngles - 180;

}

Vector3 tempAngles = new Vector3(0, 0, zAngles);

Quaternion tempQua = this.transform.rotation;

tempQua.eulerAngles = tempAngles;

this.transform.rotation = tempQua;

}

}

关于人工智能方面的英文论文及其翻译

Artificial Intelligence (AI) is the intelligence of machines and the branch of computer science which aims to create it. Textbooks define the field as "the study and design of intelligent agents,"
The field was founded on the claim that a central property of human beings, intelligence—the sapience of Homo sapiens—can be so precisely described that it can be simulated by a machine.
AI research is highly technical and specialized, deeply divided into subfields that often fail to communicate with each other.
Thinking machines and artificial beings appear in Greek myths, such as Talos of Crete, the golden robots of Hephaestus and Pygmalion’s Galatea. Stories of these creatures and their fates discuss many of the same hopes, fears and ethical concerns that are presented by artificial intelligence.
The problem of simulating (or creating) intelligence has been broken down into a number of specific sub-problems. These consist of particular traits or capabilities that researchers would like an intelligent system to display. The traits described below have received the most attention.
Deduction, reasoning, problem solving
Early AI researchers developed algorithms that imitated the step-by-step reasoning that human beings use when they solve puzzles, play board games or make logical deductions.
For difficult problems, most of these algorithms can require enormous computational resources — most experience a "combinatorial explosion": the amount of memory or computer time required becomes astronomical when the problem goes beyond a certain size. The search for more efficient problem solving algorithms is a high priority for AI research.
Human beings solve most of their problems using fast, intuitive judgments rather than the conscious, step-by-step deduction that early AI research was able to model. AI has made some progress at imitating this kind of "sub-symbolic" problem solving: embodied approaches emphasize the importance of sensorimotor skills to higher reasoning; neural net research attempts to simulate the structures inside human and animal brains that gives rise to this skill.
General intelligence
Main articles: Strong AI and AI-complete
Most researchers hope that their work will eventually be incorporated into a machine with general intelligence (known as strong AI), combining all the skills above and exceeding human abilities at most or all of them.
Many of the problems above are considered AI-complete: to solve one problem, you must solve them all. For example, even a straightforward, specific task like machine translation requires that the machine follow the author’s argument (reason), know what is being talked about (knowledge), and faithfully reproduce the author’s intention (social intelligence). Machine translation, therefore, is believed to be AI-complete: it may require strong AI to be done as well as humans can do it.
Approaches
There is no established unifying theory or paradigm that guides AI research. Researchers disagree about many issues.
Cybernetics and brain simulation
Main articles: Cybernetics and Computational neuroscience

There is no consensus on how closely the brain should be simulated.In the 1940s and 1950s, a number of researchers explored the connection between neurology, information theory, and cybernetics. Some of them built machines that used electronic networks to exhibit rudimentary intelligence, such as W. Grey Walter’s turtles and the Johns Hopkins Beast. Many of these researchers gathered for meetings of the Teleological Society at Princeton University and the Ratio Club in England. By 1960, this approach was largely abandoned, although elements of it would be revived in the 1980s.
How can one determine if an agent is intelligent? In 1950, Alan Turing proposed a general procedure to test the intelligence of an agent now known as the Turing test. This procedure allows almost all the major problems of artificial intelligence to be tested. However, it is a very difficult challenge and at present all agents fail.
Artificial intelligence can also be evaluated on specific problems such as small problems in chemistry, hand-writing recognition and game-playing. Such tests have been termed subject matter expert Turing tests. Smaller problems provide more achievable goals and there are an ever-increasing number of positive results.
The broad classes of outcome for an AI test are:
Optimal: it is not possible to perform better
Strong super-human: performs better than all humans
Super-human: performs better than most humans
Sub-human: performs worse than most humans
For example, performance at draughts is optimal, and performance at many everyday tasks performed by humans is sub-human.
A quite different approach is based on measuring machine intelligence through tests which are developed from mathematical definitions of intelligence. Examples of this kind of tests start in the late nineties devising intelligence tests using notions from Kolmogorov Complexity and compression . Mathematical definitions have, as one advantage, that they could be applied to nonhuman intelligences and in the absence of human testers.
AI is a common topic in both science fiction and in projections about the future of technology and society. The existence of an artificial intelligence that rivals human intelligence raises difficult ethical issues and the potential power of the technology inspires both hopes and fears.
Mary Shelley’s Frankenstein,
Another issue explored by both science fiction writers and futurists is the impact of artificial intelligence on society. In fiction, AI has appeared as a servant (R2D2 in Star Wars), a law enforcer (K.I.T.T. "Knight Rider"), a comrade (Lt. Commander Data in Star Trek), a conqueror (The Matrix), a dictator (With Folded Hands), an exterminator (Terminator, Battlestar Galactica), an extension to human abilities (Ghost in the Shell) and the saviour of the human race (R. Daneel Olivaw in the Foundation Series). Academic sources have considered such consequences as: a decreased demand for human labor,
Several futurists argue that artificial intelligence will transcend the limits of progress and fundamentally transform humanity. Ray Kurzweil has used Moore’s law (which describes the relentless exponential improvement in digital technology with uncanny accuracy) to calculate that desktop computers will have the same processing power as human brains by the year 2029, and that by 2045 artificial intelligence will reach a point where it is able to improve itself at a rate that far exceeds anything conceivable in the past, a scenario that science fiction writer Vernor Vinge named the "technological singularity".

Level 6 - Unit 3 - Part 2 Reading - The Challenge of AI(AI的挑战)

The internet and smartphones have changed the world and how we relate to each other. Instead of meeting in person, we increasingly interface through handheld devices. In a sense, real people are being removed, replaced by technology and virtual friends. Some people even say that they prefer to confide in their virtual friends rather than their real friends!
互联网和智能手机改变了世界,改变了我们之间的关系。我们不再需要面对面,而是越来越多地通过手持设备进行交互。在从某种意义上说,真实的人正在被科技和虚拟朋友所取代。有些人甚至更愿意向虚拟朋友倾诉,而不是真正的朋友!

AI, or artificial intelligence, is another technology that is highly disruptive. With AI, smartphone and other devices will have even more capabilities.They will be able to converse with us and tell us jokes. They may even become personal tutors, and replace our online human tutors.They will be able to do this because they will have access to our life histories. They will know what kind of problems we have, our preferences, and any content we want to learn or practice,they will be able to adapt to our needs and be available at any time. And all this will be at less cost than using a human.
AI(人工智能)是另一种极具破坏性的技术。有了AI,智能手机和其他设备将具有更多的能力。它们能和我们交谈,讲笑话,甚至可以成为私人导师,取代我们的在线人力资源导师。它们之所以可以做这些因为它们可以访问我们的生活史,它们知道我们的问题,我们的喜好,以及我们想学习或实践的任何内容,它们能够适应我们的需要,并且随时可用,所有这些都比使用人的成本低。

In fact, the substitution of AIs for human labor has the potential to transform our world. Experts warn that smart machines may cause widespread unemployment. Many workers will become redundant, replaced by machines that can perform cognitive tasks better than people. An even greater danger is that they will develop personalities and become more interesting than people.Work is already underway to produce AI companions for lonely people.
事实上,AI取代人类劳动有可能改变我们的世界。专家警告说,智能机器可能导致大范围失业,大量工人将变得多余,取而代之的是比人更能执行认知任务的机器。一个更大的危险是,它们将开发个性,变得比人更有趣。为孤独的人生产AI伴侣的工作已经开始。

Are these development something to worry about or something to welcome? How are they different than developments in the past, such as the industrial revolution? Cars replaced horses; machines and industrial robots replaced factory workers.
这些发展是值得担心还是值得欢迎?它们与过去的发展有什么不同,比如工业革命?汽车取代了马;机器和工业机器人取代了工厂工人。

Since the shift to AI is inevitable, the challenge for policy makers will be to help existing workers acquire new skills. Future generations must be prepared for a workplace populated by AIs that will continue to develop and take on new tasks. Are we up to the task?
由于向AI的转变不可避免,决策者面临的挑战将是帮助现有工人获得新技能。新一代必须为一个由继续发展并承担新任务的AI所组成的工作场所做好准备。我们能胜任这项任务吗?

人工智能,机器学习中的小样本学习,需要具备什么

小样本一般很难学,你可以用一些transform扩充一下样本的数量,或者再去采集一些样本;要么就用简单的结构去学习,比如svm什么的多次采样训练多个weak分类器去投票完成。
需要具备什么?需要正/负样本数目接近(不接近需要舍弃过多的,考虑到小样本还是通过变换增加过少的),做supervised learning需要给定标签。

关于人工智能的英文作文

  人工智能成为写作的题材,那么关于仍工智能的英文作文有哪些呢?下面是我为你整理的关于人工智能的英文作文,供大家阅览!
  人工智能的英文作文一:How will the AI affect our life ?
  The Robot is the most direct embodiment of artificial intelligence. There are a lot of robots in our lives that help us.For example:

  A robot that can sweep the floor:It can automatically complete the floor cleaning work in the room. General brush and vacuum, the ground debris into its own storage boxes, thereby completing the function of cleaning the ground, is a good helper for busy office workers.

  Robot capable of operation:In May 2015, a segment of the robot cut the grapes and cut the grapes into the perfect stitching of the video on the Internet became popular, people are very surprised. Yes, that is the "Da Vinci" surgical robot. Da Vinci surgical robot forte is minimally invasive surgery. It can assist doctors to carry out a small incision, the operation of complex surgery, but also on the operation of the image analysis, to help doctors better surgery. Da Vinci appeared to make more because of the difficulty of the operation will be to lose their lives to get help.

  Nano robo:Nano robot is small, but it can cure disease, but also to control water pollution. Scientists in 2015 will be the nano robots to carry out clinical trials of Escherichia coli, in the study of wastewater treatment has been a great progress. Nano robot in the treatment of heart disease, the nano robot will go through a diameter of 2 to 3 mm of the catheter, to enter the specific parts of the need for treatment. This catheter technique can also be used in the brain and other parts, such as the intestinal tract and the urethra. The most difficult to enter these parts is to achieve a high degree of accuracy. For this reason, nanotechnology has long been hailed as the most ideal weapon against cancer in the future.

  These are artificial intelligence for our life brings convenience embodiment, there are a number of other robots, such as, able to take weight and drive the robot and so on.

  These days the big star of the "Alpha dog", it than our powerful is its operation ability, it is not beyond the human mind! And some occupations is cannot be replaced by robots, such as the need to human inspiration and creativity of the designers, to experience life and emotion of the teacher, the need of good or bad judgment of lawyers, and so on, artificial intelligence is not a panacea. I believe that one day the big white will go down the screen to come to people’s side, become an indispensable human good friends, and like the terminator that the evil, will always remain on the screen.
  人工智能的英文作文二
  How Will AI Affect Our Life The artificial intelligence, such as a computer that thinks like a human being is scary. When it comes to this issues, different people offer different views, some people think that machine has feelings like human beings is interesting and it may be a better server to human; while the other think it is dangerous, it may causes a revolt.

  In my opinion, We should not be afraid of artificial intelligence. It is the science and technology revolution that makes the modern civilization.let me talk some advantages of AI. On the one hand ,AI makes our society much richer than before.Because AI makes the same labors can produce more products in the same time. On the other hand, Computer is the most common artificial intelligence products. Without computer,we may not know so much about the updated information of the world.Without computer,scientist may not invent so many amazing inventions. In summary I sure AI has bright future.

  In a word,AI changes our life in everywhere and we can see AI in everywhere.Maybe we think there is not any weakness in AI.

  猜你喜欢:

1. 对于人工智能的看法英语作文

2. 人工智能英语作文

3. 人工智能英文版作文

4. 有关人工智能利弊的英语作文

5. 对人工智能的看法英文作文

6. 人工智能影响生活英语作文范文

7. 人工智能对人类影响英文作文

8. 关于人工智能的影响英文作文

以上就是我们为大家找到的有关“transform人工智能(sift算法是不是人工智能)”的所有内容了,希望可以帮助到你。如果对我们网站的其他内容感兴趣请持续关注本站。

transform人工智能(sift算法是不是人工智能)

本文编辑:admin

更多文章:


计算机二级c语言考试技巧(计算机二级c语言怎么过)

计算机二级c语言考试技巧(计算机二级c语言怎么过)

各位老铁们,大家好,今天由我来为大家分享计算机二级c语言考试技巧,以及计算机二级c语言怎么过的相关问题知识,希望对大家有所帮助。如果可以帮助到大家,还望关注收藏下本站,您的支持是我们最大的动力,谢谢大家了哈,下面我们开始吧!本文目录计算机二

2025年12月28日 08:45

数据库课程设计怎么设计(数据库人事管理系统课程设计怎么做)

数据库课程设计怎么设计(数据库人事管理系统课程设计怎么做)

大家好,今天小编来为大家解答以下的问题,关于数据库课程设计怎么设计,数据库人事管理系统课程设计怎么做这个很多人还不知道,现在让我们一起来看看吧!本文目录数据库人事管理系统课程设计怎么做数据库设计的基本步骤是什么课程设计仓库管理系统的数据库制

2025年10月2日 23:45

webservice接口集成平台(webservice接口老不老)

webservice接口集成平台(webservice接口老不老)

大家好,如果您还对webservice接口集成平台不太了解,没有关系,今天就由本站为大家分享webservice接口集成平台的知识,包括webservice接口老不老的问题都会给大家分析到,还望可以解决大家的问题,下面我们就开始吧!本文目录

2025年11月21日 12:15

square app(iphone的语音系统名称是什么)

square app(iphone的语音系统名称是什么)

大家好,如果您还对square app不太了解,没有关系,今天就由本站为大家分享square app的知识,包括iphone的语音系统名称是什么的问题都会给大家分析到,还望可以解决大家的问题,下面我们就开始吧!本文目录iphone的语音系统

2025年12月26日 00:15

怎么做linux系统盘(如何制作启动u盘安装linux系统)

怎么做linux系统盘(如何制作启动u盘安装linux系统)

其实怎么做linux系统盘的问题并不复杂,但是又很多的朋友都不太了解如何制作启动u盘安装linux系统,因此呢,今天小编就来为大家分享怎么做linux系统盘的一些知识,希望可以帮助到大家,下面我们一起来看看这个问题的分析吧!本文目录如何制作

2026年4月20日 22:15

determine词组(I am determined to stay here.这句话结构是主系表还是主谓宾宾determined 是形容词吗请具体说明一下)

determine词组(I am determined to stay here.这句话结构是主系表还是主谓宾宾determined 是形容词吗请具体说明一下)

各位老铁们好,相信很多人对determine词组都不是特别的了解,因此呢,今天就来为大家分享下关于determine词组以及I am determined to stay here.这句话结构是主系表还是主谓宾宾determined 是形容

2025年12月10日 14:00

resume个人简历(留学个人简历resume的主要内容介绍)

resume个人简历(留学个人简历resume的主要内容介绍)

这篇文章给大家聊聊关于resume个人简历,以及留学个人简历resume的主要内容介绍对应的知识点,希望对各位有所帮助,不要忘了收藏本站哦。本文目录留学个人简历resume的主要内容介绍简历(Resume)的写作格式及主要内容英国留学个人简

2025年12月4日 21:00

transformers卡牌游戏(收藏战斗两不误变形金刚前线稀有卡牌全攻略)

transformers卡牌游戏(收藏战斗两不误变形金刚前线稀有卡牌全攻略)

本篇文章给大家谈谈transformers卡牌游戏,以及收藏战斗两不误变形金刚前线稀有卡牌全攻略对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔。本文目录收藏战斗两不误变形金刚前线稀有卡牌全攻略变形金刚前线怎么玩《变形金刚:百炼为战》传

2026年7月22日 21:15

命令提示符无法打开mysql(mysql命令行输入命令回车后没反应怎么回事具体如图)

命令提示符无法打开mysql(mysql命令行输入命令回车后没反应怎么回事具体如图)

“命令提示符无法打开mysql”相关信息最新大全有哪些,这是大家都非常关心的,接下来就一起看看命令提示符无法打开mysql(mysql命令行输入命令回车后没反应怎么回事具体如图)!本文目录mysql命令行输入命令回车后没反应怎么回事具体如图

2025年7月8日 13:30

怎么在字符数组后加字符串((C语言)如何将char**作为字符串数组,并且动态地添加字符串到其中)

怎么在字符数组后加字符串((C语言)如何将char**作为字符串数组,并且动态地添加字符串到其中)

大家好,今天小编来为大家解答以下的问题,关于怎么在字符数组后加字符串,(C语言)如何将char**作为字符串数组,并且动态地添加字符串到其中这个很多人还不知道,现在让我们一起来看看吧!本文目录(C语言)如何将char**作为字符串数组,并且

2026年7月6日 11:30

chinesechildren是什么意思(Chinese+children是几个单词)

chinesechildren是什么意思(Chinese+children是几个单词)

本篇文章给大家谈谈chinesechildren是什么意思,以及Chinese+children是几个单词对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔。本文目录Chinese+children是几个单词we’llmeetthechi

2025年12月17日 01:00

python版本(下载Python后发现还是之前的版本怎么办)

python版本(下载Python后发现还是之前的版本怎么办)

大家好,如果您还对python版本不太了解,没有关系,今天就由本站为大家分享python版本的知识,包括下载Python后发现还是之前的版本怎么办的问题都会给大家分析到,还望可以解决大家的问题,下面我们就开始吧!本文目录下载Python后发

2025年11月29日 22:45

unix和windows的关系(WINDOWS与UNIX的联系)

unix和windows的关系(WINDOWS与UNIX的联系)

“unix和windows的关系”相关信息最新大全有哪些,这是大家都非常关心的,接下来就一起看看unix和windows的关系(WINDOWS与UNIX的联系)!本文目录WINDOWS与UNIX的联系linux和Unix 还有windows

2025年11月19日 16:45

tree中文(tree中文翻译)

tree中文(tree中文翻译)

各位老铁们好,相信很多人对tree中文都不是特别的了解,因此呢,今天就来为大家分享下关于tree中文以及tree中文翻译的问题知识,还望可以帮助大家,解决大家的一些困惑,下面一起来看看吧!本文目录tree中文翻译tree的中文是什么意思up

2026年5月24日 13:45

网页设计表格代码(网页三行三列表格的代码)

网页设计表格代码(网页三行三列表格的代码)

大家好,关于网页设计表格代码很多朋友都还不太明白,不过没关系,因为今天小编就来为大家分享关于网页三行三列表格的代码的知识点,相信应该可以解决大家的一些困惑和问题,如果碰巧可以解决您的问题,还望关注下本站哦,希望对各位有所帮助!本文目录网页三

2025年7月15日 01:45

powermill五轴编程(powermill编程软件!谁能详细介绍一下它的主要功能啊!还有它可以绘图么编程中要用到边界线等等…怎)

powermill五轴编程(powermill编程软件!谁能详细介绍一下它的主要功能啊!还有它可以绘图么编程中要用到边界线等等…怎)

本篇文章给大家谈谈powermill五轴编程,以及powermill编程软件!谁能详细介绍一下它的主要功能啊!还有它可以绘图么编程中要用到边界线等等…怎对应的知识点,文章可能有点长,但是希望大家可以阅读完,增长自己的知识,最重要的是希望对各

2026年8月11日 07:15

作用的近义词?说明方法有那些 其作用都是什么

作用的近义词?说明方法有那些 其作用都是什么

本篇文章给大家谈谈作用,以及作用的近义词对应的知识点,文章可能有点长,但是希望大家可以阅读完,增长自己的知识,最重要的是希望对各位有所帮助,可以解决了您的问题,不要忘了收藏本站喔。本文目录作用的近义词说明方法有那些 其作用都是什么Linux

2026年2月12日 11:00

initiate形容词副词(open的形容词是什么)

initiate形容词副词(open的形容词是什么)

大家好,initiate形容词副词相信很多的网友都不是很明白,包括open的形容词是什么也是一样,不过没有关系,接下来就来为大家分享关于initiate形容词副词和open的形容词是什么的一些知识点,大家可以关注收藏,免得下次来找不到哦,下

2026年3月22日 04:15

substantial变形单词(哪些英语单词可以表达 “重要的” 以及它们的区别)

substantial变形单词(哪些英语单词可以表达 “重要的” 以及它们的区别)

这篇文章给大家聊聊关于substantial变形单词,以及哪些英语单词可以表达 “重要的” 以及它们的区别对应的知识点,希望对各位有所帮助,不要忘了收藏本站哦。本文目录哪些英语单词可以表达 “重要的” 以及它们的区别高中英语选择性必修二单词

2026年1月13日 17:00

dam在口语中的意思(dam是什么意思)

dam在口语中的意思(dam是什么意思)

各位老铁们好,相信很多人对dam在口语中的意思都不是特别的了解,因此呢,今天就来为大家分享下关于dam在口语中的意思以及dam是什么意思的问题知识,还望可以帮助大家,解决大家的一些困惑,下面一起来看看吧!本文目录dam是什么意思荷兰地名 d

2026年1月22日 00:00

近期文章

本站热文

electronics软件(labcenter electronics是什么软件)
2025-05-22 23:45:02 浏览:134
博客是微博吗(博客是微博吗)
2025-05-22 22:45:01 浏览:111
diversity and distribution(悬赏英语短文)
2025-05-23 16:15:02 浏览:107
ios软件开发前景(iOS就业前景怎么样)
2025-05-22 23:00:01 浏览:102
next month(有The next month这个单词吗,和 next month有什么区别)
2025-05-23 02:30:01 浏览:102
patron(patron是什么意思)
2025-05-23 10:30:02 浏览:95
标签列表

热门搜索