• 0
  • مالي خلق
  • أتهاوش
  • متضايق
  • مريض
  • مستانس
  • مستغرب
  • مشتط
  • أسولف
  • مغرم
  • معصب
  • منحرج
  • آكل
  • ابكي
  • ارقص
  • اصلي
  • استهبل
  • اضحك
  • اضحك  2
  • تعجبني
  • بضبطلك
  • رايق
  • زعلان
  • عبقري
  • نايم
  • طبيعي
  • كشخة
  • النتائج 1 إلى 3 من 3

    الموضوع: Swaping without Temp Var

    1. #1
      التسجيل
      04-07-2004
      الدولة
      SYria-Damas
      المشاركات
      10
      المواضيع
      2
      شكر / اعجاب مشاركة

      Exclamation Swaping without Temp Var

      Al Salam Alikom
      I have 2 integers x&y .
      I Want to Swap thos values .
      this Code is works very good :
      كود:
      temp = x;
      x = y;
      y = temp ;


      Now you have to do this Operation without Using the temp var ,


    2. #2
      التسجيل
      30-12-2004
      المشاركات
      449
      المواضيع
      12
      شكر / اعجاب مشاركة

      مشاركة: Swaping without Temp Var

      GAWD, are you _itching_ for the old XOR trick? can I cheat and use implicit temporaries in function arguments?

      كود:
      int x, y;
      
      void swap (int a, int b)
      {
         x = b;
         y = a;
      }
      
      [initialize x and y here]
      
      swap (x, y);

    3. #3
      التسجيل
      04-07-2004
      الدولة
      SYria-Damas
      المشاركات
      10
      المواضيع
      2
      شكر / اعجاب مشاركة

      مشاركة: Swaping without Temp Var

      اقتباس المشاركة الأصلية كتبت بواسطة ibn_alqalam
      GAWD, are you _itching_ for the old XOR trick? can I cheat and use implicit temporaries in function arguments?

      كود:
      int x, y;
      
      void swap (int a, int b)
      {
         x = b;
         y = a;
      }
      
      [initialize x and y here]
      
      swap (x, y);
      are you Keding man ? .
      1- Calling the function swap() is creating 2 Vars in the Memory, so it dosn't work.
      2- you cn do it with XOR func , but there is another Easy way .
      Just think

    ضوابط المشاركة

    • لا تستطيع إضافة مواضيع جديدة
    • لا تستطيع الرد على المواضيع
    • لا تستطيع إرفاق ملفات
    • لا تستطيع تعديل مشاركاتك
    •