34,000 行的最佳本地数据存储
我使用的是 Win 7 pro,继承了一个包含 34,000 行的文本文件。我需要对其进行一些非常基本的搜索和排序。
我原本打算使用 Excel,但它会变得臃肿不堪。
除了将数据加载到我的本地 SQL 服务器之外,将这些数据放入其中进行一些简单的搜索之外,最简单的解决方案是什么?
I'm on Win 7 pro and I've inherited a text file with 34,000 rows. I need to do some really basic searching and sorting on it.
I was going to use Excel, but it would bloat and die.
What's the simplest solution, short of loading the thing into my local SQL server, to throw this data into to do some simple searching?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将文本读入列表或地图(取决于更适合您的需求),然后在列表上应用排序算法。查看此列表以找到适合您需求的一个。
排序算法
Read text into a list or map (depending on what suits your needs better) then apply a sorting algorithm on the list. Check out this list to find one that suits your needs.
Sorting Algorithms