数组 – 将LinkedList与String Reversal组合为目标是理解LinkedList

前端之家收集整理的这篇文章主要介绍了数组 – 将LinkedList与String Reversal组合为目标是理解LinkedList前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图使用一个链接列表程序来显示用户输入的反向字符串.以下是我的程序来反转用户输入的字符串.它还给出了字符串的长度:
  1. TITLE ReadStringProc (ReadStringProc.asm)
  2.  
  3. include irvine32.inc
  4.  
  5. ListNode STRUCT
  6. NodeData DWORD ?
  7. NextPtr DWORD ?
  8. ListNode ENDS
  9.  
  10. NULL = 0
  11. Counter = 0
  12.  
  13. .data
  14. input byte 100 dup(0)
  15. stringinput byte "Enter any string: ",0
  16. totallength byte "The total length is: ",0
  17. reverse byte "The reverse string is: ",0
  18.  
  19. LinkedList LABEL DWORD
  20. REPT input
  21. Counter = Counter + 1
  22. ListNode <Counter,($+ Counter * SIZEOF ListNode)>
  23. ENDM
  24. ListNode <0,0> ; tail node
  25.  
  26.  
  27.  
  28.  
  29. .code
  30.  
  31.  
  32.  
  33.  
  34. stringLength proc
  35. push ebp
  36. mov ebp,esp
  37. push ebx
  38. push ecx
  39. mov eax,0
  40. mov ebx,[ebp+8]
  41. L1:
  42. mov ecx,[ebx] ;you can use ecx,cx,ch,cl
  43. cmp ecx,0 ;you can use ecx,cl
  44. JE L2
  45. add ebx,1
  46. add eax,1
  47. jmp L1
  48. L2:
  49. pop ecx
  50. pop ebx
  51. mov ebp,esp
  52. pop ebp
  53. ret 4
  54.  
  55. stringLength endp
  56.  
  57. swap MACRO first,last
  58. push eax
  59. mov ah,first
  60. mov al,last
  61. xor al,ah ;x
  62. xor ah,al ;y
  63. xor al,ah ;x
  64. mov last,al
  65. mov first,ah
  66. pop eax
  67. endM
  68.  
  69. stringReverse proc
  70. push ebp
  71. mov ebp,esp
  72. push OFFSET input
  73. call stringLength
  74. mov edx,[ebp+8] ;edx = offset string to reverse
  75. mov esi,offset 0
  76. dec eax
  77. mov ebx,edx ;ebx stores the pointer to the first character
  78. add ebx,eax ;now ebx store the pointer to the last character before the '$'
  79. reverseloop:
  80. push edx
  81. push ebx
  82. swap [edx],[ebx]
  83. inc edx ;increment of the right-most pointer
  84. dec ebx ;decrement of the right-most pointer
  85. cmp edx,ebx ;compares the left-most pointer to the right-most
  86. jb reverseloop
  87. jmp stopEnd ;"ja",there is no need to check a condition twice
  88.  
  89. stopEnd:
  90. mov esp,ebp
  91. pop ebp
  92. ret 4
  93.  
  94. stringReverse endp
  95.  
  96. main proc
  97.  
  98. call clrscr
  99. mov edx,offset stringinput
  100. call writeString
  101. mov edx,offset input
  102. call writeString
  103. call stringLength
  104. mov edx,offset input
  105. mov ecx,sizeof input
  106. call readstring
  107. call crlf
  108. mov edx,offset totallength
  109. call writestring
  110. call writedec
  111. call crlf
  112. mov edx,offset reverse
  113. call crlf
  114. call writeString
  115. push offset input
  116. call stringReverse
  117. mov edx,offset input
  118. call writeString
  119. call crlf
  120.  
  121. exit
  122. main endp
  123.  
  124.  
  125. end main

我的目标是找到一种方法来使用在Kip Irvine的Assembly x86书中找到的这段代码,并将其与我所使用的代码结合起来,以便我可以使用链接列表来显示反向字符串:

  1. ListNode STRUCT
  2. NodeData DWORD ?
  3. NextPtr DWORD ?
  4. ListNode ENDS
  5.  
  6. TotalNodeCount = 15
  7. NULL = 0
  8. Counter = 0
  9.  
  10. .data
  11. LinkedList LABEL DWORD
  12. REPT TotalNodeCount
  13. Counter = Counter + 1
  14. ListNode <Counter,0> ; tail node
  15.  
  16. .code
  17. main PROC
  18. mov esi,OFFSET LinkedList
  19.  
  20. ; Display the integers in the NodeData members.
  21. NextNode:
  22. ; Check for the tail node.
  23. mov eax,(ListNode PTR [esi]).NextPtr
  24. cmp eax,NULL
  25. je quit
  26.  
  27. ; Display the node data.
  28. mov eax,(ListNode PTR [esi]).NodeData
  29. call WriteDec
  30. call Crlf
  31.  
  32. ; Get pointer to next node.
  33. mov esi,(ListNode PTR [esi]).NextPtr
  34. jmp NextNode
  35.  
  36. quit:
  37. exit

有人可以指导我走正确的道路.谢谢.

解决方法

您不需要链接列表来反转字符串.不,认真

但是,如果你坚持…

  1. stringReverse proc; <-- Warning: EBX and ESI are not preserved!
  2. push ebp;
  3. mov ebp,esp;
  4. mov ebx,[ebp + 8]; <-- EBX = target string pointer
  5. push ebx;
  6. call stringLength; <-- we trust that stringLength() preserves EBX
  7. ; mov ebx,[ebp + 8]; <-- uncomment this if it actually does not
  8. mov esi,ebx;
  9. xor edx,edx;
  10. add ebx,eax;
  11. neg eax;
  12.  
  13. @fill:
  14. mov cl,[ebx + eax];
  15. sub esp,8; <-- allocating a new linked list item on stack
  16. mov [esp],cl; <-- 1st DWORD / 1st BYTE = current character
  17. mov [esp + 4],edx; <-- 2nd DWORD = next item pointer
  18. mov edx,esp; <-- EDX = current item pointer
  19. inc eax;
  20. jne @fill;
  21.  
  22. @roll:
  23. mov cl,[edx];
  24. mov [esi],cl;
  25. inc esi;
  26. mov edx,[edx + 4]; <-- next item,here we go!
  27. test edx,edx; <-- what if we are done?
  28. jne @roll;
  29.  
  30. mov esp,ebp; <-- discarding the allocated stack
  31. pop ebp;
  32. ret 4;

这样的东西

它应该工作,但我没有真正测试.

猜你在找的Java相关文章