• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC SKILL
  3. simple sort question

Stats

  • Locked Locked
  • Replies 6
  • Subscribers 143
  • Views 15269
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

simple sort question

nosaj
nosaj over 13 years ago

I'm trying to sort a list of strings with sort alphalessp, can anyone explain why "l" in the list is dropped in the following example?

How may I sort the list without losing elments AND changing the original list?

I tried saving list a to a tmp list, that doesn't seem to help.  

Thanks in advance!

Commands :

a=list("res" "sumW" "w" "sumL" "l" "rs" "segSp" "srs")
length(a)
sort(a 'alphalessp)
length(a)
a

CIW Output :

a=list("res" "sumW" "w" "sumL" "l" "rs" "segSp" "srs")
("res" "sumW" "w" "sumL" "l"
    "rs" "segSp" "srs"
)
length(a)
8
sort(a 'alphalessp)
("l" "res" "rs" "segSp" "srs"
    "sumL" "sumW" "w"
)
length(a)
7
a
("res" "rs" "segSp" "srs" "sumL"
    "sumW" "w"
)

  • Cancel
Parents
  • skillUser
    skillUser over 13 years ago

     Hi,

    Yes, this is because "sort" is a destructive list operator, so 'a' is modified in place, to be safe, assign the return value of sort back to the variable:

     a = sort(a 'alphalessp)

     You can assign the variable contents to another variable before sorting, if you don't want to change 'a':

     b = copy(a)
     b = sort(b 'alphalessp)

     Or you could write your own sorting algorithm!

    Hope this helps.

    Regards,

    Lawrence.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • skillUser
    skillUser over 13 years ago

     Hi,

    Yes, this is because "sort" is a destructive list operator, so 'a' is modified in place, to be safe, assign the return value of sort back to the variable:

     a = sort(a 'alphalessp)

     You can assign the variable contents to another variable before sorting, if you don't want to change 'a':

     b = copy(a)
     b = sort(b 'alphalessp)

     Or you could write your own sorting algorithm!

    Hope this helps.

    Regards,

    Lawrence.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information