找到最小的二进制数字,其中没有连续的1。

huangapple go评论159阅读模式
英文:

Find the smallest binary number without continous 1

问题

这里是代码部分的翻译:

  1. String a = "11001110101010";
  2. String b = "";
  3. int d = 0;
  4. for(int i = a.length()-1; i>0;i--){
  5. if(a.charAt(i) == '1' && a.charAt(i-1)=='1'){
  6. while(a.charAt(i)=='1'){
  7. b = b + '0';
  8. if(i!=0){i--;}
  9. d++;
  10. }
  11. }
  12. b = b + a.charAt(i);
  13. }
  14. StringBuffer c = new StringBuffer(b);
  15. System.out.println(c.reverse());

希望这能对你有所帮助。如果你有其他问题,请随时提出。

英文:

So here is the thing.
I have to write code to show a binary number X's next smallest "code-X number" which is bigger than binary number X.
code-X number is a binary number which have no continuously 1. For example: 1100 is not a code X number because it has 11, and 1001001001 is a code-X number
Here is my code

  1. String a = "11001110101010";
  2. String b = "";
  3. int d = 0;
  4. for(int i = a.length()-1; i>0;i--){
  5. if(a.charAt(i) == '1' && a.charAt(i-1)=='1'){
  6. while(a.charAt(i)=='1'){
  7. b = b + '0';
  8. if(i!=0){i--;}
  9. d++;
  10. }
  11. }
  12. b = b + a.charAt(i);
  13. }
  14. StringBuffer c = new StringBuffer(b);
  15. System.out.println(c.reverse());

I plan on copy the binary string to string b, replace every '1' which next i is '1' into '0' and insert an '1'
like:
1100 ---> 10000
but i have no idea how to do it 找到最小的二进制数字,其中没有连续的1。
May you help me some how? Thanks

答案1

得分: 3

以下是代码的中文翻译:

尝试这个。这个处理任意长度的位串。算法如下。

  • 需要有条件地修改最后两位,以强制更改,如果数字不是codeEx数字。这确保它将更高。感谢John Mitchell提出的观察。
  • 从左边开始,找到第一个1组。例如,0110
  • 如果不在开头,将其替换为100以获得1000
  • 否则,在开头插入1。
  • 在所有情况下,将分组右侧的所有内容替换为0。
  1. String x = "10000101000000000001000001000000001111000000000000110000000000011011";
  2. System.out.println(x.length());
  3. String result = codeX(x);
  4. System.out.println(x);
  5. System.out.println(result);
  6. public static String codeX(String bitStr) {
  7. StringBuilder sb = new StringBuilder(bitStr);
  8. int i = 0;
  9. int len = sb.length();
  10. // 进行调整以确保新数字大于原始数字。如果词以00或10结尾,那么添加一个1将在所有情况下增加值。
  11. // 如果以01结尾,那么用10替换将产生相同的效果。一旦完成,算法就接管查找下一个CodeX数字。
  12. if (s.equals("01")) {
  13. sb.replace(len - 2, len, "10");
  14. } else {
  15. sb.replace(len - 1, len, "1");
  16. }
  17. while ((i = sb.indexOf("11")) >= 0) {
  18. sb.replace(i, len, "0".repeat(len - i));
  19. if (i != 0) {
  20. sb.replace(i - 1, i + 2, "100");
  21. } else {
  22. sb.insert(i, "1");
  23. }
  24. }
  25. String str = sb.toString();
  26. i = str.indexOf("1");
  27. return i >= 0 ? str.substring(i) : str;
  28. }

打印结果:

  1. 10000101000000000001000001000000001111000000000000110000000000011011
  2. 10000101000000000001000001000000010000000000000000000000000000000000
英文:

Try this. This handles arbitrary length bit strings. The algorithm is as follows.

  • Needed to conditionally modify last two bits to force a change if the number is not a codeEx number. This ensures it will be higher. Thanks to John Mitchell for this observation.
  • Starting from the left, find the first group of 1's. e.g 0110
  • If not at the beginning replace it with 100 to get 1000
  • Otherwise, insert 1 at the beginning.
  • In all cases, replace everything to the right of the grouping with 0's.
  1. String x = "10000101000000000001000001000000001111000000000000110000000000011011";
  2. System.out.println(x.length());
  3. String result = codeX(x);
  4. System.out.println(x);
  5. System.out.println(result);
  6. public static String codeX(String bitStr) {
  7. StringBuilder sb = new StringBuilder(bitStr);
  8. int i = 0;
  9. int len = sb.length();
  10. // Make adjust to ensure new number is larger than
  11. // original. If the word ends in 00 or 10, then adding one will
  12. // increase the value in all cases. If it ends in 01
  13. // then replacing with 10 will do the same. Once done
  14. // the algorithm takes over to find the next CodeX number.
  15. if (s.equals("01")) {
  16. sb.replace(len - 2, len, "10");
  17. } else {
  18. sb.replace(len- 1, len, "1");
  19. }
  20. while ((i = sb.indexOf("11")) >= 0) {
  21. sb.replace(i, len, "0".repeat(len - i));
  22. if (i != 0) {
  23. sb.replace(i - 1, i + 2, "100");
  24. } else {
  25. sb.insert(i, "1");
  26. }
  27. }
  28. String str = sb.toString();
  29. i = str.indexOf("1");
  30. return i >= 0 ? str.substring(i) : str;
  31. }

Prints

  1. 10000101000000000001000001000000001111000000000000110000000000011011
  2. 10000101000000000001000001000000010000000000000000000000000000000000
  3. </details>
  4. # 答案2
  5. **得分**: 2
  6. Using raw binary you can use the following.
  7. ```java
  8. public static void main(String[] args) {
  9. long l = 0b1000010100000000010000010000000011110000000000110000000000011011L;
  10. System.out.println(
  11. Long.toBinaryString(nextX(l)));
  12. }
  13. public static long nextX(long l) {
  14. long l2 = l >>> 1;
  15. long next = Long.highestOneBit(l & l2);
  16. long cutoff = next << 1;
  17. long mask = ~(cutoff - 1);
  18. return (l & mask) | cutoff;
  19. }

prints

  1. 1000010100000000010000010000000010000000000000000000000000000000

EDIT: Based on @WJS correct way to find the smallest value just larger.

英文:

Using raw binary you can use the following.

  1. public static void main(String[] args) {
  2. long l = 0b1000010100000000010000010000000011110000000000110000000000011011L;
  3. System.out.println(
  4. Long.toBinaryString(nextX(l)));
  5. }
  6. public static long nextX(long l) {
  7. long l2 = l &gt;&gt;&gt; 1;
  8. long next = Long.highestOneBit(l &amp; l2);
  9. long cutoff = next &lt;&lt; 1;
  10. long mask = ~(cutoff - 1);
  11. return (l &amp; mask) | cutoff;
  12. }

prints

  1. 1000010100000000010000010000000010000000000000000000000000000000

EDIT: Based on @WJS correct way to find the smallest value just larger.

答案3

得分: 0

这是WJS的99%正确答案的一个小扩展。

只有一件事缺失,如果原始的X字符串中没有连续的1,数字不会递增。主方法的这个修改处理了这个问题。

编辑;添加了一个else{}。从字符串的末尾开始,直到找到一个0之前,所有数字都应该被反转。然后我们将其更改为1,并在将结果字符串传递给WJS的codeX函数之前中断。
(codeX版本不包括sb.replace(len-2,len,"11");)

  1. public static void main(String[] args) {
  2. String x = "10100";
  3. StringBuilder sb = new StringBuilder(x);
  4. if (!x.contains("11")) {
  5. for (int i = sb.length()-1; i >= 0; i--) {
  6. if (sb.charAt(i) == '0') {
  7. sb.setCharAt(i, '1');
  8. break;
  9. } else {
  10. sb.setCharAt(i, '0');
  11. }
  12. }
  13. }
  14. String result = codeX(sb.toString());
  15. System.out.println(x);
  16. System.out.println(result);
  17. }
英文:

This is a slight expansion WJS' 99% correct answer.

There is just one thing missing, the number is not incremented if there are no consecutive 1's in the original X string.
This modification to the main method handles that.

Edit; Added an else {}. Starting from the end of the string, all digits should be inverted until a 0 is found. Then we change it to a 1 and break before passing the resulting string to WJS' codeX function.
(codeX version does not include sb.replace(len-2,len,"11");)

  1. public static void main(String[] args) {
  2. String x = &quot;10100&quot;;
  3. StringBuilder sb = new StringBuilder(x);
  4. if (!x.contains(&quot;11&quot;)) {
  5. for (int i = sb.length()-1; i &gt;= 0; i--) {
  6. if (sb.charAt(i) == &#39;0&#39;) {
  7. sb.setCharAt(i, &#39;1&#39;);
  8. break;
  9. } else {
  10. sb.setCharAt(i, &#39;0&#39;);
  11. }
  12. }
  13. }
  14. String result = codeX(sb.toString());
  15. System.out.println(x);
  16. System.out.println(result);
  17. }

huangapple
  • 本文由 发表于 2020年8月12日 00:00:15
  • 转载请务必保留本文链接:https://go.coder-hub.com/63361988.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定