C ++ AI博客 [英] C++ AI Blog

查看:89
本文介绍了C ++ AI博客的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

用于实施人工智能的C ++ AI博客在
http:/ /mentifex.virtualentity.com/cpp.html - 使用C ++源代码。


Arthur T. Murray

-
http://doi.acm.org/10.1145/307824.307853 - ACM SIGPLAN通知;
http://www.sl4.org /archive/0205/3829.html - BG博士的评论
http://www.amazon.com/exec/obidos/ASIN/0595654371/ - AI教科书
http://www.kurzweilai.net/mindx/profile.php?id=26 - Mind- eXchange

A C++ AI Weblog for implementing artificial intelligence is at
http://mentifex.virtualentity.com/cpp.html -- with C++ source.

Arthur T. Murray
--
http://doi.acm.org/10.1145/307824.307853 -- ACM SIGPLAN Notices;
http://www.sl4.org/archive/0205/3829.html -- comments by Dr. B.G.
http://www.amazon.com/exec/obidos/ASIN/0595654371/ -- AI textbook
http://www.kurzweilai.net/mindx/profile.php?id=26 - Mind-eXchange

推荐答案

Arthur T. Murray wro te:
Arthur T. Murray wrote:
用于实现人工智能的C ++ AI Weblog位于
http://mentifex.virtualentity.com/cpp.html - 使用C ++源码。
A C++ AI Weblog for implementing artificial intelligence is at
http://mentifex.virtualentity.com/cpp.html -- with C++ source.




您网站上的内容不是真的看C ++。你使用一个不存在的

标题(iomanip.h),你使用typedef创建一个现有的类型bool(

另一个名字,但是为什么?)。你的代码充满了非托管指针,没有使用STL数据结构(这本身并不是一个错误,但是使用了

_any_ generic元素,即使是一个由你自己写的)等等。

代码看起来像10年前的东西。我强烈建议你在

之前开始在人工智能系统中投入大量的工时,你就会学到足够的东西来完成它。否则你会做出一些东西,这些东西都有不合理的高维护费用。


这篇文章并不意味着气馁,而是一个友好的警告/帮助

让你有机会不去一条明显不是最好的路径。

-

WW aka Attila



What is on your site does not really look C++. You use a non-existent
header (iomanip.h), you use typedef to create an existing type bool (with
another name, but what for?). Your code is full of unmanaged pointers, no
use of STL data structures (which in itself is not an error, but the use of
_any_ generic element is missing, even one written by yourself) etc. The
code looks like something from 10 years ago. I strongly suggest that before
you start putting an awful lot of manhours into an AI system you learn
enough to do it right. Otherwise you will make something which have have
unreasonably high maintenance.

This post is not meant to be discouragement, but a friendly warning/help to
give you the chance to not go down to a path which is clearly not the best
one.

--
WW aka Attila


" White Wolf" < WO *** @ freemail.hu> 2003年9月7日在Sun上慷慨写道:
"White Wolf" <wo***@freemail.hu> graciously wrote on Sun, 7 Sep 2003:
Arthur T. Murray写道:
Arthur T. Murray wrote:
用于实现人工智能的C ++ AI博客是
http://mentifex.virtualentity.com/cpp.html - 使用C ++源码。
你网站上的内容并不是真正的C ++。
A C++ AI Weblog for implementing artificial intelligence is at
http://mentifex.virtualentity.com/cpp.html -- with C++ source.
What is on your site does not really look C++.




它是由一位在一年前上过C ++课程的工程师写的。

您使用不存在的标题(iomanip.h),


iomanip.h应该是一个输入/输出操作的标题

。我不知道这个标题是否包含在

工程师的相当旧的(早期)版本的C ++中,或者如果他有自己写的b
我昨天没有把它交给我

当他递给我四页的C ++代码时,我b / b
继续键入上传的cpp.html网页。

你使用typedef创建一个现有的类型bool
(用另一个名字,但是用于什么?)。


我不知道。我将不得不问隐姓埋名工程师。

你的代码充满了非托管指针,没有使用STL数据结构(这本身并不是错误,
但是缺少_any_ generic元素的使用,即使是一个自己写的等等。


对不起;我不知道任何C ++ - 他这样做对我有利:-)

代码看起来像是10年前的事情。


至少这是一个开始,其他人可以做出反应。

截至上传后的12个小时,cpp.html页面

响应这个Usenet线程已经获得了大约五十次点击。

(并且它在网络上的其他三个域中冗余:=)

我强烈建议,在你开始将大量工作时间放入人工智能系统之前,你应该学会做正确的事情。
否则你会做出一些有不合理维护的东西。 。

http://mentifex.virtualentity.com/theory5。 html 是我的主要工作。


目前(您可能会注意到
中的另请参阅...链接 http://mentifex.virtualentity.com/cpp.html :-)计划是

设置了这样的XYZ AI Weblogs。对于大约二十XYZ,编程

语言作为每种语言编码AI的出发点。

即使第一个代码有一些缺陷......比赛已开启。
这篇文章并不意味着气馁,而是友好的警告/帮助,让你有机会不去一条明显不是最好的道路。


你是大自然的绅士之一,我非常感谢你。
-
WW aka Attila



It was written by an engineer who took a course in C++ a year ago.
You use a non-existent header (iomanip.h),
The "iomanip.h" is supposed to be a header for the manipulation
of input/output. I don''t know if the header is included in the
engineer''s rather old (early) version of C++, or if he has
written it himself and did not give it to me yesterday
when he handed me the four pages of C++ code that I
proceeded to key into the uploaded "cpp.html" webpage.
you use typedef to create an existing type bool
(with another name, but what for?).
I do not know. I will have to ask the incognito engineer.
Your code is full of unmanaged pointers,
no use of STL data structures (which in itself is not an error,
but the use of _any_ generic element is missing, even one
written by yourself) etc.
Sorry; I don''t know any C++ -- he did it as a favor for me :-)
The code looks like something from 10 years ago.
At least it''s a start, something for others to react against.
As of twelve hours after uploading, the "cpp.html" page
has gotten around fifty hits in response to this Usenet thread.
(And it is redundantly at three other domains on the Web :=)
I strongly suggest that before you start putting an awful lot
of manhours into an AI system you learn enough to do it right.
Otherwise you will make something which have have
unreasonably high maintenance.
http://mentifex.virtualentity.com/theory5.html is my main work.

Currently (as you may notice from the "See also..." links at
http://mentifex.virtualentity.com/cpp.html :-) the plan is to
set up such "XYZ AI Weblogs" for about twenty "XYZ" programming
languages as a departure point for coding AI in each language.
Even if the very first code has some defects... THE RACE IS ON.
This post is not meant to be discouragement, but a friendly
warning/help to give you the chance to not go down to a path
which is clearly not the best one.
You are one of Nature''s gentlemen, and I thank you kindly.
--
WW aka Attila




再次感谢WW aka Attila,


此致,


Arthur T. Murray

-
http://doi.acm.org/ 10.1145 / 307824.307853 - ACM SIGPLAN通知;
http://www.sl4.org/archive/0205/3829.html - BG博士的评论
http://www.amazon.com/exec/obidos/ASIN/0595654371/ - AI教科书
http://www.kurzweilai.net/mindx/profile.php? id = 26 - Mind-eXchange



Again thanking "WW aka Attila",

Sincerely,

Arthur T. Murray
--
http://doi.acm.org/10.1145/307824.307853 -- ACM SIGPLAN Notices;
http://www.sl4.org/archive/0205/3829.html -- comments by Dr. B.G.
http://www.amazon.com/exec/obidos/ASIN/0595654371/ -- AI textbook
http://www.kurzweilai.net/mindx/profile.php?id=26 - Mind-eXchange


Arthur T. Murray写道:

[SNIP]
Arthur T. Murray wrote:
[SNIP]
你网站上的内容并不是真正的C ++。
它是由一位在一年前上过C ++课程的工程师编写的。
What is on your site does not really look C++.
It was written by an engineer who took a course in C++ a year ago.




嗯,我希望他没有为这门课付钱。



Well, I hope he did not pay for that course.

你使用一个不存在的标题(iomanip.h),
You use a non-existent header (iomanip.h),



iomanip.h应该是输入/输出操作的标题。



The "iomanip.h" is supposed to be a header for the manipulation
of input/output.




不。这是一个古老的过去的预标准标题。 :-)

我不知道标题是否包含在
工程师的相当旧的(早期)版本的C ++中,或者如果他已经写好了它本人并没有把它交给我昨天
当他递给我四页C ++代码时,我继续键入上传的cpp.html。网页。


他做了一个通常的C ++课程,从10年前开始教C ++。



Nope. It is a pre-standard header, from an ancient past. :-)
I don''t know if the header is included in the
engineer''s rather old (early) version of C++, or if he has
written it himself and did not give it to me yesterday
when he handed me the four pages of C++ code that I
proceeded to key into the uploaded "cpp.html" webpage.
He did a usual C++ course, which teaches C++ from 10 years ago.

你使用的是typedef创建一个现有的类型bool
(用另一个名字,但是为了什么?)。
you use typedef to create an existing type bool
(with another name, but what for?).



我不知道。我将不得不问隐姓埋名的工程师。



I do not know. I will have to ask the incognito engineer.




我宁愿不再向他询问任何事情。至少是C ++。他可能是完美的Java或SmallTalk的



对不起;我不知道任何C ++ - 他这样做对我有利:-)


Khm。这个好感很臭。 ;-)他也不太了解C ++。



I would rather not ask him anything anymore. At least C++. He is probably
perfect in Java or SmallTalk.
Sorry; I don''t know any C++ -- he did it as a favor for me :-)
Khm. This favor stinks. ;-) He does not know much C++ either.

代码看起来像10年前的东西。
The code looks like something from 10 years ago.


<至少它是一个开始,是其他人反应的东西。



At least it''s a start, something for others to react against.




如果你想要一场火焰战......

截至上传后十二小时,cpp.html页面
响应这个Usenet线程已经获得了大约五十次点击。
(它在网络上的其他三个域中冗余:=)



If you want a flame war...
As of twelve hours after uploading, the "cpp.html" page
has gotten around fifty hits in response to this Usenet thread.
(And it is redundantly at three other domains on the Web :=)




很棒。你得到了多少反应?现在如果人们看到像这样的代码(我的意思是严肃的C ++程序员),他们会记住URL,而不是因为错误地使用了它。



Great. How many reactions did you get? Nowadays if people see code like
this (I mean serious C++ programmers) they will remember the URL just not to
use it by mistake.

我强烈建议你在开始将非常多的工作时间放入人工智能系统之前,你应该学会做正确的事情。
否则你会做某些东西有过不合理的高维护。
I strongly suggest that before you start putting an awful lot
of manhours into an AI system you learn enough to do it right.
Otherwise you will make something which have have
unreasonably high maintenance.



http://mentifex.virtualentity.com/theory5.html 是我的主要工作。

目前(您可能会注意到另请参阅... ;链接
http://mentifex.virtualentity.com/cpp.html :-)计划是设置这样的XYZ AI Weblogs。对于大约二十XYZ,编程
语言作为编写每种语言AI的出发点。
即使第一个代码有一些缺陷......比赛已开启。



http://mentifex.virtualentity.com/theory5.html is my main work.

Currently (as you may notice from the "See also..." links at
http://mentifex.virtualentity.com/cpp.html :-) the plan is to
set up such "XYZ AI Weblogs" for about twenty "XYZ" programming
languages as a departure point for coding AI in each language.
Even if the very first code has some defects... THE RACE IS ON.




页面上显示的代码是*不是* C ++。如果他事先知道他会赢,那么你知道一位绅士不会参加比赛。 :-)



The code displayed on your page is *not* C++. And you know a gentleman does
not race if he knows in advance that he will win. :-)

这篇文章并不意味着气馁,而是友好的
警告/帮助让你有机会不去这显然不是最好的路径。
This post is not meant to be discouragement, but a friendly
warning/help to give you the chance to not go down to a path
which is clearly not the best one.



你是大自然的绅士之一,我非常感谢你。



You are one of Nature''s gentlemen, and I thank you kindly.




哦。我和绅士开玩笑,现在你说了......我一定是在削弱。

;-)


恕我直言,如果你试图搜索AI和互联网上的C ++(谷歌是你的朋友[TM])你很可能会找到那些不仅知道人工智能而且还知道人们不仅仅是C ++的人。


(旁注:学习C ++成为专家可能需要长达3年的时间才能获得永久性的,最先进的C ++工作。)


无论如何,祝你好运!


-

WW又名阿提拉



Oh. I was joking with gentleman and now you say it... I must be weakening.
;-)

IMHO if you try to search for AI and C++ on the internet (Google is your
friend [TM]) you will most probably find people who not only know AI but
also C++.

(Sidenote: to learn C++ to be an expert might take up to 3 years of
permanent, cutting edge C++ work.)

Anyway, good luck for your quest!

--
WW aka Attila


这篇关于C ++ AI博客的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆