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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: Is knowledge of algorithms overrated in software development

3 点作者 denzell超过 8 年前
Is there a necessity to have a good understanding of algorithms to be a good software developer?<p>I know some fantastic developers, who are great problem solvers, and they couldn&#x27;t tell an algorithm from an apple.<p>It seems all interviews and discussions revert to a grading based on algorithm understanding, and it feels like too much emphasis is placed on one marker of competency.

2 条评论

viraptor超过 8 年前
Knowing as in being able to recall the specifics of implementation? No. For two reasons: 1. Unless your job involves custom data structures, you simply won&#x27;t remember them after a few years. 2. If you do want to use a specific algorithm, in most cases you want a cache-friendly version of it. The naive implementations rarely have the characteristics you want in practice.<p>Knowing as in knowing rough categories and being able discuss big O characteristics when needed? Super useful. I could maybe implement one or two dictionaries. Badly. But I know what alternatives there are, what names to google for if I ever do need a custom dictionary, and how to define what I&#x27;m looking for (for example lockfree inserts, or ordered keys, or max 2 memory lookups per key, etc.)
GFK_of_xmaspast超过 8 年前
What kinds of problems are they solving that don&#x27;t involve algorithms somehow.