本文介绍了从列表中确定DISTINCT字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我有一些涉及一些循环的代码... 在每次迭代中,我们检索一个字符串值...我想构建一个 DISTINCT(在SQL意义上)字符串值。 我们的示例字符串可能是''ABCD'',''ABCDXX'',''ABCDYY'', ''ABCDZZ'',''ABCD'', ''ABCDYY'' 在这种情况下,我们希望最终得到''ABCD'',' 'ABCDXX'',''ABCDYY'',''ABCDZZ'' 就这么简单......我不打扰我们使用什么结构... 很容易使用大量的嵌套循环构建一个解决方案,但似乎有点效率低,所以我想知道是否有一些来自 的好建议... 提前致谢 Chris 解决方案 > DISTINCT(在SQL意义上)字符串值。 我们的示例字符串可能是ABCD,ABCDXX,ABCDYY,ABCDZZ,''ABCD'',''ABCDYY''在这种情况下,我们希望最终得到''ABCD'',''ABCDXX'',''ABCDYY'', ''ABCDZZ''它就这么简单......我不打扰我们使用的结构...... 很容易建立一个解决方案大量的嵌套循环,但似乎a有点低效,所以我想看看是否有一些好的建议来自地板... 提前致谢 Chris ''ABCD'',''ABCDYY''在这种情况下,我们希望最终得到''ABCD'',''ABCDXX'',''ABCDYY'',''ABCDZZ' '就这么简单....我不会打扰我们使用的结构...... 使用嵌套循环的负载构建解决方案很容易,但它 似乎有点低效,所以我想看看是否有一些好的建议...... 提前致谢 Chris I have a bit of code which involves some looping... In each iteration, we retrieve a string value... I want to build a list ofDISTINCT (in the SQL sense) string values. Our example strings might be ''ABCD'', ''ABCDXX'', ''ABCDYY'', ''ABCDZZ'', ''ABCD'',''ABCDYY''In which case, we want to end up with ''ABCD'', ''ABCDXX'', ''ABCDYY'', ''ABCDZZ'' It''s as simple as that.... I''m not bothered what structures we use...It is easy to build a solution using loads of nested loops, but it seems abit inefficient, so I''m wanting to see if there some good suggestions fromthe floor... Thanks in advance Chris 解决方案 oflist of ''ABCD'', ''ABCDYY'' In which case, we want to end up with ''ABCD'', ''ABCDXX'', ''ABCDYY'', ''ABCDZZ'' It''s as simple as that.... I''m not bothered what structures we use... It is easy to build a solution using loads of nested loops, but itseems a bit inefficient, so I''m wanting to see if there some good suggestions from the floor... Thanks in advance Chris 这篇关于从列表中确定DISTINCT字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-27 11:28