Advanced Search

عرض المشاركات

هنا يمكنك مشاهدة جميع المشاركات التى كتبها هذا العضو . لاحظ انه يمكنك فقط مشاهدة المشاركات التى كتبها فى الاقسام التى يسمح لك بدخولها فقط .


الرسائل - mathematics

صفحات: [1] 2 3
3
الدراسات والتعليم الجامعي / طلب Math Magic 3 Pro للضرورة
« في: أغسطس 05, 2008, 01:06:57 صباحاً »
http://www.download.com/MathMag....73.html

عسى ان يعود عليك بالنفع
حجم البرنامج 4.5 ميغا

تحياتي للجميع

بالتوفيق عزيزتي حلم

4
الدراسات والتعليم الجامعي / طلب Math Magic 3 Pro للضرورة
« في: أغسطس 05, 2008, 12:49:18 صباحاً »
http://www.mathmagicturk.com/product/pro431.html

ان شاء الله تستفيدي من هالرابط

5
الدراسات والتعليم الجامعي / طلب Math Magic 3 Pro للضرورة
« في: أغسطس 04, 2008, 02:18:34 صباحاً »
السلام عليكم

أول مرة بشوف هالبرنامج بس رح اعمل جهدي اني لاقيلك اياه او اي شي قريب منو

6
الدراسات والتعليم الجامعي / توماس Thomas' Calculus, 11th Edition
« في: يوليو 15, 2008, 10:35:52 مساءاً »
':110:'

7
الرياضيات العامة اللامنهجية / مكتبة البرامج
« في: يوليو 14, 2008, 03:19:51 مساءاً »
':110:'

جزاك الله خيراااا

8
الدراسات والتعليم الجامعي / الشبكات
« في: أكتوبر 17, 2007, 12:34:24 صباحاً »
'<img'>?'<img'>?'<img'>!!!!!!!!!!!!!!!!!!!1

9
الدراسات والتعليم الجامعي / الشبكات
« في: أكتوبر 15, 2007, 11:23:47 مساءاً »
السلام عليكم ورحمة الله وبركاته

سؤالي لكم .. عن شيء له علاقة بالمنطق الرياضي

ضمن مادة المنطق الرياضي نحن ندرس مايسمى الشبكات ومخططات هاس

واريد اي برنامج يساعدني على رسم هذه المخططات

اتمنى انو تساعدوني بسرعة

الموضوع مستعجل جدا

10
الدراسات والتعليم الجامعي / Sorting Algorithms
« في: أكتوبر 06, 2007, 08:40:52 مساءاً »
Heap Sort

Algorithm Analysis
The heap sort is the slowest of the O(n log n) sorting algorithms, but unlike the merge and quick sorts it doesn't require massive recursion or multiple arrays to work. This makes it the most attractive option for very large data sets of millions of items.
The heap sort works as it name suggests - it begins by building a heap out of the data set, and then removing the largest item and placing it at the end of the sorted array. After removing the largest item, it reconstructs the heap and removes the largest remaining item and places it in the next open position from the end of the sorted array. This is repeated until there are no items left in the heap and the sorted array is full. Elementary implementations require two arrays - one to hold the heap and the other to hold the sorted elements.
To do an in-place sort and save the space the second array would require, the algorithm below "cheats" by using the same array to store both the heap and the sorted array. Whenever an item is removed from the heap, it frees up a space at the end of the array that the removed item can be placed in.
Source Code
Below is the basic heap sort algorithm. The siftDown() function builds and reconstructs the heap.
CODE
void heapSort(int numbers[], int array_size)
{   
  int i, temp;

  for (i = (array_size / 2)-1; i >= 0; i--)
    siftDown(numbers, i, array_size);

  for (i = array_size-1; i >= 1; i--)
  {
    temp = numbers[0];
    numbers[0] = numbers[i];
    numbers[i] = temp;
    siftDown(numbers, 0, i-1);
  }
}


void siftDown(int numbers[], int root, int bottom)
{
  int done, maxChild, temp;

  done = 0;
  while ((root*2 <= bottom) && (!done))
  {
    if (root*2 == bottom)
      maxChild = root * 2;
    else if (numbers[root * 2] > numbers[root * 2 + 1])
      maxChild = root * 2;
    else
      maxChild = root * 2 + 1;

    if (numbers[root] < numbers[maxChild])
    {
      temp = numbers[root];
      numbers[root] = numbers[maxChild];
      numbers[maxChild] = temp;
      root = maxChild;
    }
    else
      done = 1;
  }
}



11
الدراسات والتعليم الجامعي / Sorting Algorithms
« في: أكتوبر 06, 2007, 08:27:10 مساءاً »
Bubble Sort

Algorithm Analysis
The bubble sort is the oldest and simplest sort in use. Unfortunately, it's also the slowest.
The bubble sort works by comparing each item in the list with the item next to it, and swapping them if required. The algorithm repeats this process until it makes a pass all the way through the list without swapping any items (in other words, all items are in the correct order). This causes larger values to "bubble" to the end of the list while smaller values "sink" towards the beginning of the list.
The bubble sort is generally considered to be the most inefficient sorting algorithm in common usage. Under best-case conditions (the list is already sorted), the bubble sort can approach a constant O(n) level of complexity. General-case is an abysmal O(n2).
While the insertion, selection, and shell sorts also have O(n2) complexities, they are significantly more efficient than the bubble sort.
.
Source Code
Below is the basic bubble sort algorithm.
CODE
void bubbleSort(int numbers[], int array_size)
{
  int i, j, temp;

  for (i = (array_size - 1); i >= 0; i--)
  {
    for (j = 1; j <= i; j++)
    {
      if (numbers[j-1] > numbers[j])
      {
        temp = numbers[j-1];
        numbers[j-1] = numbers[j];
        numbers[j] = temp;
      }
    }
  }
}

12
الدراسات والتعليم الجامعي / Sorting Algorithms
« في: أكتوبر 06, 2007, 08:25:03 مساءاً »
Sorting Algorithms

Bubble sort
Heap sort
Insertion sort
Merge sort
Quick sort
Selection sort
Shell sort


One of the fundamental problems of computer science is ordering a list of items. There's a plethora of solutions to this problem, known as sorting algorithms. Some sorting algorithms are simple and intuitive, such as the bubble sort. Others, such as the quick sort are extremely complicated, but produce lightening-fast results.





13
مبارك لك أختي الغالية


 ':203:'  ':203:'  ':203:'

تستحقين الأفضل دوما

دمتي سالمة

وفقك الله وسدد خطاك

14
أعجوبة الرقم 37
انظر :37 × 3 × 1 = 111
لاحظ : 37 × 3 × 2 = 222
ركز : 37 × 3 × 3 = 333
جرب البقية ولاحظ العجب



وهذا التركيب الهرمي أيضا


0*9+8=8
9*9+7=88
98*9+6=888
987*9+5=8888
9876*9+4=88888
98765*9+3=888888
987654*9+2=8888888
9876543*9+1=88888888
98765432*9+0=888888888

15
السلام عليكم ورحمة الله وبركاته .....
ألف شكر لك أخي المشرف على هذا الموضوع المتميز ..
أعرف بعض الأشياء المشابهة سأضيفها من بعد اذنك
 ':110:'

صفحات: [1] 2 3