256
Obunachilar
Ma'lumot yo'q24 soatlar
Ma'lumot yo'q7 kun
+830 kun
Postlar arxiv
256
ما هي IEEE؟
IEEE (اختصار لـ Institute of Electrical and Electronics Engineers) هو معهد مهندسي الكهرباء والإلكترونيات، وهو أكبر منظمة مهنية تقنية في العالم مكرسة لتطوير التكنولوجيا لصالح البشرية.
كيفية الانضمام إلى IEEE
يمكن للطلاب والمهندسين المحترفين الانضمام إلى IEEE من خلال موقعها الرسمي، والاستفادة من مواردها الضخمة مثل المقالات العلمية، والخصومات على المؤتمرات، والشبكات المهنية.
أنشطة IEEE
العضويات والفروع الطلابية: تقدم برامج لدعم الطلاب والمهندسين من خلال الفروع المحلية في الجامعات.
الخلاصة
IEEE هي منظمة عالمية رائدة في مجالات الهندسة والتكنولوجيا، وتلعب دورًا مهمًا في تطوير المعايير التقنية ودعم الأبحاث العلمية، مما يجعلها عنصرًا أساسيًا في تطور الصناعات التكنولوجية الحديثة.
256
هذا يسوي sort سوو اذا تريدون تنطردون من المختبر
#include <iostream>
#include <algorithm>
#include <cstdlib>
#include <ctime>
using namespace std;
bool isSorted( int arr[], int size) {
for (int i = 0;i < size - 1; i++)
if(arr[i] > arr [i + 1]) return false;
return true;
}
void bogosort (int arr[], int size) {
while (!isSorted(arr, size)) {
random_shuffle(arr,arr+size);
}
}
int main() {
srand(time(0));
int arr[] = {3,2,4,2,5};
int size = sizeof(arr) / sizeof(arr[0]);
cout <<"Unsorted: ";
for (int n : arr) cout << n << " ";
cout<<endl;
bogosort (arr , size);
cout << "sorted: ";
for (int n : arr) cout << n << " ";
cout << endl;
return 0;
}
256
#include <iostream>
using namespace std;
void Swap(int &a, int &b) {
int temp = a;
a = b;
b = temp;
}
void sortA(int ar[], int size) {
for (int i = 0; i < size - 1; i++) {
for (int j = 0; j < size - i - 1; j++) {
if (ar[j] > ar[j + 1]) {
Swap(ar[j], ar[j + 1]);
}
}
}
}
void sortD(int ar[], int size) {
for (int i = 0; i < size - 1; i++) {
for (int j = 0; j < size - i - 1; j++) {
if (ar[j] < ar[j + 1]) {
Swap(ar[j], ar[j + 1]);
}
}
}
}
int Max(int ar[], int size) {
int maxVal = ar[0];
for (int i = 1; i < size; i++) {
if (ar[i] > maxVal) {
maxVal = ar[i];
}
}
return maxVal;
}
int binarySearch(int ar[], int size, int target) {
int left = 0, right = size - 1;
while (left <= right) {
int mid = left + (right - left) / 2;
if (ar[mid] == target)
return mid;
else if (ar[mid] < target)
left = mid + 1;
else
right = mid - 1;
}
return -1;
}
int main() {
int ar[] = {10, 25, 12, 45, 8, 69, 15};
int size = sizeof(ar) / sizeof(ar[0]);
sortA(ar, size);
cout << "Array sorted in ascending order: ";
for (int i = 0; i < size; i++) {
cout << ar[i] << " ";
}
cout << endl;
int target;
cout << "Enter a number to search: ";
cin >> target;
int index = binarySearch(ar, size, target);
if (index != -1)
cout << "Element found at index: " << index << endl;
else
cout << "Element not found in the array." << endl;
cout << "Maximum number in the array: " << Max(ar, size) << endl;
return 0;
}
256
هذن اهم الملفات بمادة الاحتمالية يبقن وياك لنهاية الكورس بيهن ملخص لكل فصل وحلول الهوموركات واسئلة سنوات سابقة محلولات يجي منهن من اصل 5 اسئلة 3 او 4 اسئلة نصا
256
📌روابط شرح مادة الاحتمالية والاحصاء
(د. عماد)
▪️Chapter One
Lecture 1
https://youtu.be/aJICRIFjh7M
Lecture 2
https://youtu.be/P8LHP0JxjQs
▪️Chapter Two
Lecture 3
https://youtu.be/2kwDKQFTfhw
Lecture 4
https://youtu.be/SfaljUutG8U
Lecture 5
https://youtu.be/JMCVD8kzCFk
Lecture 6
https://youtu.be/yrJu74k2cQw
Lecture 7
https://youtu.be/eLspxpROdz8
▪️Chapter Three
Lecture 8
https://youtu.be/eUADmH1S_TY
Lecture 9
https://youtu.be/i9FrMCWeURE
Lecture 10
https://youtu.be/_zQhV8n0R6I
Lecture 11
https://youtu.be/KK-wIFvCrHI
▪️Chapter Four
Lecture 12
https://youtu.be/hxFLzkF3O4k
Lecture 13
https://youtu.be/n_H3SLJVQ_g
▪️Chapter Five
Lecture 14
https://youtu.be/2vW8p5dZ32w
Lecture 15
https://youtu.be/UIuyXepsr20
256
خلي نبدي اول شي بالاحتمالية هذا المصدر 👆الذكره الدكتور وكال اجيب 50% من الاسئلة او اكثر من عنده وحلوله وياه اذا تحب تطلع 👍
