256
Subscribers
No data24 hours
No data7 days
+830 days
Posts Archive
256
السلام عليكم
هذن بعض القنوات الي د.سلام دكتور الالكترونيات نصحنه بيهن ممكن تفيدكم بشغلكم بشكل عام الي يريد يتعلم بيهن(ما يفيدن بالجامعه بس وره ما تتخرج يفيدنك بالشغل تكدر تخليهم يمك وبالصيف تدرسهم)
https://youtube.com/channel/UCKd2wquRKF3ef7M5umucDKQ?si=AR5bbF0n1BMmav8t
https://youtube.com/@elzerowebschool?si=Qq-Tq2fpt4z91f10
https://youtube.com/@muhammedessa?si=2GFki90W8h1DZa5m
https://youtube.com/playlist?list=PLHKTPL-jkzUoIg2mMB2RY7zf8Ig2eniRI&si=Do0ZPIK1VXOBdc-F
256
جميع اكواد مختبر الخوارزميات
1- Finding the Maximum Element in a Finite Sequence
2- Linear Search Algorithm
3- Binary search
4-greedy change-making
5- three-sum problem
6- three-sum problem with improvement(binary search)
7- Quick-Find
8- Quick-Union
9- Quick-Union weighted
10- Selection Sort
11- Insertion Sort
12- Shell Sort
13- Merge Sort
256
Code1
#include <iostream>
using namespace std;
bool lineat_srh(int num[],int size ,int numsearch)
{
for (int i =0; i< size ; ++i )
{
if (num[i] == numsearch)
{
return true;
}
}
return false;
}
int main()
{
const int size =16;
int num[size] ;
int numsearch;
cout<< "enter 16 numbers "<<endl;
for (int i =0; i< size ; ++i )
{
cin>> num[i];
}
cout<<"enter number search :";
cin>>numsearch;
if (lineat_srh(num, size ,numsearch ))
{
cout<<"number = " <<numsearch<< " existing " <<endl;
}
else
{
cout<<"number = "<<numsearch<< " unavailable " <<endl;
}
return 0;
}256
Code1
#include <iostream> using namespace std; bool lineat_srh(int num[],int size ,int numsearch) { for (int i =0; i< size ; ++i ) { if (num[i] == numsearch) { return true; } } return false; } int main() { const int size =16; int num[size] ; int numsearch; cout<< "enter 16 numbers "<<endl; for (int i =0; i< size ; ++i ) { cin>> num[i]; } cout<<"enter number search :"; cin>>numsearch; if (lineat_srh(num, size ,numsearch )) { cout<<"number = " <<numsearch<< " existing " <<endl; } else { cout<<"number = "<<numsearch<< " unavailable " <<endl; } return 0; }
256
اكو ناس تكول سري هذا المعهد وهذا وافق دكتور مصعب و هم العمادة وافقو ودكتورة دنيا حجت بيهة اريد اعرف شنو أنت تريد اصير من تحتكر هجي شغلة لروحك وانت على يا اساس تقيس الطلاب؟
