TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

The Computer Science Handbook: First Draft [pdf]

144 点作者 StylifyYourBlog超过 10 年前

18 条评论

cechner超过 10 年前
This is algorithms, which while useful is not even the majority part of a computer science education, as I understand it.<p>My CS degree involved image processing, graphics, operating systems, systems programming (low level programming), programming language theory, discrete math, linear algebra and statistics, just off the top of my head.<p>Interestingly programming is actually not a big part of a degree (again, as I understand it.) It takes many years to become a good programmer, and it would be a waste to dedicate an entire 4 year degree to just that.
评论 #9017803 未加载
jimmahoney超过 10 年前
The title is much broader than what&#x27;s listed in the table of contents, which is primarily what you&#x27;d find in one course (algorithms) from a CS undergrad course of study.<p>For an online text that covers similar stuff, see <a href="http://interactivepython.org/runestone/static/pythonds/index.html" rel="nofollow">http:&#x2F;&#x2F;interactivepython.org&#x2F;runestone&#x2F;static&#x2F;pythonds&#x2F;index...</a> .<p>The last &quot;interview&quot; chapter is about getting a job, not about CS itself.<p>A good starting spot for the topics in &quot;computer science&quot;, at least at the undergrad level, is the ACM curriculum ( <a href="http://www.acm.org/education/CS2013-final-report.pdf" rel="nofollow">http:&#x2F;&#x2F;www.acm.org&#x2F;education&#x2F;CS2013-final-report.pdf</a> ).
评论 #9016723 未加载
xyclos超过 10 年前
&gt; easy to read without any math or computer science background<p>&gt; you are already familiar with Java or C++ syntax<p>not sure you will have too much success hitting your target demographic of &quot;people who are ignorant of computer science, yet are experienced programmers&quot;
评论 #9016576 未加载
评论 #9016531 未加载
jsalit超过 10 年前
Not sure if OP is author, but this seems like a decent start at a useful compilation. It&#x27;s obviously highly focused on data structures and algorithms, so the title is a bit misleading.<p>Strange - not a single citation&#x2F;reference?
suyash超过 10 年前
Pretty average content and not academically strong enough. It lacks the depth of proof and detailed technical explanations. I wouldn&#x27;t call it a computer science book - it seems like a data structure and alg concise guide. There are tons of books if you&#x27;re serious about Algorithms or Data Structures alone and that won&#x27;t make you a computer scientist.<p>Computer Science is a big field that spans many areas of programming, theory and research.
评论 #9016582 未加载
thetwiceler超过 10 年前
The treatment of Big O notation is not only misleading (and poorly conveyed) but wrong in several ways. Big O is an upper bound that does not need to be tight. The table displaying the &quot;limit of N for 1 second (standard processor)&quot; and the accompanying note that the chart will eventually become outdated is manifestly wrong and misleading. Big O ignores constant factors and so no such comparisons can be made. For <i>any</i> particular duration of time (or for <i>any</i> particular number of elements), an algorithm with complexity `O(f(N))` may be faster than one with complexity `O(g(N))` <i>regardless</i> of `f` and `g`. Big O is not something that can obsolesce.<p>Also, it is not necessary that there be a base case for recursion (only well-founded recursion). For instance, the Haskell definition<p><pre><code> repeat :: a -&gt; [a] repeat x = x : repeat x </code></pre> is a recursive definition but it has no base case. Of course, there can also be multiple base cases or other more complicated structures.<p>Saying unconditionally that all operations for a hash set or hash map are O(1) is wrong.<p>Opening quotation in LaTeX is accomplished by &quot;``&quot;.<p>I also think that the comparison between the human brain and CPU is completely unjustified. Given that most people could not remember the sequence of results of 32 coin tosses, why shouldn&#x27;t I say they have no greater than 4 bytes of memory? (For myself, I think the most appropriate unit of memory is &quot;10 seconds of commonly spoken English language&quot;).<p>There are already so many terrific sources for learning algorithms that I don&#x27;t understand why the author created this book. It is not only inaccurate, but more difficult to understand than other resources I have come across (e.g., Coursera).
teddyh超过 10 年前
See also: <a href="https://en.wikibooks.org/wiki/Subject:Computer_science" rel="nofollow">https:&#x2F;&#x2F;en.wikibooks.org&#x2F;wiki&#x2F;Subject:Computer_science</a>
thirdtruck超过 10 年前
I could use a resource along these lines, especially with all the programming tests I&#x27;m facing during my job hunt. Thanks.
journeeman超过 10 年前
I like it. It&#x27;s written by students so it&#x27;s pretty easy to read. This seems like it could evolve into a students&#x27; version of &#x27;Foundations of Computer Science&#x27; by Aho, Ullman - <a href="http://infolab.stanford.edu/~ullman/focs.html" rel="nofollow">http:&#x2F;&#x2F;infolab.stanford.edu&#x2F;~ullman&#x2F;focs.html</a>
ivan_ah超过 10 年前
This theory + a tutorial about testing best practices + 20 weekend projects would be a really good way to learn how to code.<p>Thinking about stacks, trees, and graphs can go a long way to build up learners&#x27; ability to simulate what the computer will do, e.g., getting the steps right for breadth first search in a graph is a rite of passage.
GroSacASacs超过 10 年前
page 9: I think there is a mistake &quot;However, the human brain can contain much more memory than humans.&quot;
评论 #9016579 未加载
csstudnt超过 10 年前
I appreciate the effort, but I think Foundations of Computer Science covers the same material, only better and more rigorously: <a href="http://infolab.stanford.edu/~ullman/focs.html" rel="nofollow">http:&#x2F;&#x2F;infolab.stanford.edu&#x2F;~ullman&#x2F;focs.html</a>
acbart超过 10 年前
Research says that interactive feedback is more important than static. I recommend the OpenDSA project.<p><a href="http://algoviz.org/OpenDSA/" rel="nofollow">http:&#x2F;&#x2F;algoviz.org&#x2F;OpenDSA&#x2F;</a><p>I do appreciate accessible text though - worth looking into.
评论 #9016409 未加载
oneeyedpigeon超过 10 年前
Looks good so far. I would have loved this as an intro. before starting my CS degree; it might&#x27;ve even been useful for my UK A-level course (age 17-18).<p>I think there&#x27;s an error here:<p>string[1..3] = ’abc’ string[1..1] = ’’
评论 #9016901 未加载
CharlesMerriam2超过 10 年前
I&#x27;m sorry. If I am going to teach this, it must be a comic book.
评论 #9016339 未加载
dcgoss超过 10 年前
Is it supposed to be missing practice problems at the end?
chrys超过 10 年前
Have you read &quot;Head First Java&quot; by Kathy Sierra? Data Structure &amp; Algorithms book written in &quot;Head First&quot; format maybe pretty cool.<p>I wonder if you could re-format your book in that manner?
McUsr超过 10 年前
You should really consider something other than LaTeX as a publishing platform, or make it look better, when taking it from draft format to publishing format.<p>This doesn&#x27;t communicate that algorithms are fun. An algorithm book, should be like a Magicians show, really. With fun problems to apply the algorithms on.<p>I also note that there aren&#x27;t any links for backreferences to topics, and that at least one topic is missing, heaps.<p>I am actually very fond of Robert M. Sedgewicks books (Second Edition), and Donald E. Knuths monumental accomplishment. Those books are fun, most books concerning algorithms are not as fun as they should be.<p>I am picky I guess, I want fun excercises, or presentations, but also accurate details, and minituous explanations.