Showing posts with label Data Structures. Show all posts
Showing posts with label Data Structures. Show all posts

Thursday, 27 June 2013

Great Lakes Loan

|| Great Lakes Loan ||   ||Great Lakes Loan|| ||Great Lakes Loan||


Great Lakes Loan has helped many students in the country in the past and it remains one of the top notch organizations that facilitate student loans. In an ideal world, every student would have a right to education they would like to pursue without the hindrance of their financial status. But reality is very different and student loans make it possible for you to dream and aspire for a future that you have envisioned for yourself. However getting the best possible student loan for your educational needs isn’t always easy either and that’s where Great Lakes comes in.
Great Lakes Higher Education Corporation has always been focussed on helping students change their lives for the better and work towards a glorious future. That’s why the non profit organization has worked with students, lenders, schools and various organizations within the community for around four decades now. Their aim remains to provide better options for students who have dreams in their eyes when they think of college education. If you are looking at your college education as a launch pad into a solid career, you will greatly benefit from these loans, which have helped millions of students in the past.

Great Lakes Loan

For starters, Great Lakes Higher Education Corporation and Affiliates are one of country’s top names when it comes to student loan servicers and guarantors. They have built a reputation for themselves by offering impeccable service to the student community, which is why it’s become a trusted name amongst students in different parts of the country. Through its strong network of around 1200 staff members, who are equally dedicated to the cause of creating a path to success for students, this corporation does its best to offer more options to fund their education.
The company has its headquarters in Madison, Wisconsin but has a wide reaching impact on lives of students in various parts of the country due to its strong connections with schools and lenders. Great Lakes has always done its best to boost the financial aid programs for students and has today become the designated guarantor in different states including Ohio, South Dakota, Minnesota and Wisconsin. That itself instils faith in most students who are looking for a reputable organization to align with.

Great Lakes Higher Education Guaranty Corporation and Great Lakes loan Education Loan Services are the two subsidiaries of the organization that are dedicated to the cause. So far the corporation has helped millions of students all over the country and given their future careers a shot in the arm. Not only does the corporation work with millions of student borrowers all over the country but it also works closely with around 6000 schools, US Department of Education too. It also has a strong network of more than a 1000 lenders that many young students seeking loans can benefit from.
The organization has serviced student loans for billions of dollars so far and holds guarantees for many billion dollars too. With its steadfast approach to making things easier for student funding, this federal loan servicer has made a difference to many lives in the past and continues to do so even today.

Great Lakes Loan: How can you benefit from it?

Great Lakes Loan The corporation endeavours to offer financial and educational support to students all the way through their studies. You also get brilliant operational support, which makes it easier for you to focus on your education and get financial support you need without any hassles. Importantly it also facilities easy repayment of student loan, which is what many of us are concerned about right at the onset. To make things simpler for students, Great Lakes offers various tools and different resources, which are crucial to manage their loans without any difficulties.
And since the corporation also works with educational institutions and lenders, it becomes easier to chalk out a financial aid program for every campus that students like you can benefit from. Thus working with Great Lakes means all your bases are covered and you get all the flexibility you need to put your mind at rest.

Saturday, 25 May 2013

Carol Minarcik - Online Business Coach | Online Business Advisor

Carol Minarcik - Online Business Coach | Online Business Advisor
  
  Carol Minarcik is an Online Business Coach and Online business Advisor
assisting people on achieving success in business. Online Business Coach
is always with you to boom your business sales and generate profits for you.

  
|| online business coach||, ||online business|| || advisor, online business||
 
                   || business coach, business advisor||

Tuesday, 14 May 2013

Sell Your Macbook Now

Sell Your Macbook,Ipone,Ipade



At “Sell Your Macbook Pro”, we pay you for the cell phones, iPads, Macs and other Apple devices you no longer need or if they are not in working condition. We can help you to upgrade faster or you can put a little extra cash in your pocket.

Macbook Pro, iPad, iPhone  must be sent within 10 Days period from the day of quote.

We will pay you exactly what we offered with the exception of fraud and/or gross misrepresentation

All clients are paid at their request, by either company check, PayPal instant transfer or Western Union. Checks are mailed via usps priority mail to the address of the sellers request. There may be a brief inspected period at our facility in order to confirm the model and damage to the device.

By shipping your Macbook pro, iPhone, or iPad to us, you certify that you are the legal owner of this electronic device.

All initial quotes are in pending status and waiting our evaluation of your  electronic device and no binding offer is made until we have had a chance to inspect the laptop or other device that you send to us. We reserve the right to refuse to offer to purchase any item that you send us for any reason we deem, in our sole discretion, to be sensible. You must send us your laptop (or any other electronic gadget) within the time period stated herein. We reserve the right to refuse to purchase an item at our sole discretion, in such cases, where an item meets the description, we will assume responsibility to return the item, at our expense. If we decide not to purchase the device, you will be given the option of allowing us to recycle the device but you will not receive any payment for the device. You must appropriately package the device you send us in order to protect it from harm during the shipping process. You are solely responsible for any harm that comes to the device you send us if you fail to appropriately package the device prior to sending it.
 

Thursday, 7 March 2013

Calculator in c++ using stack data structure



  /*Calculator =========================program*/
 
     /****************************************************************/
     /*****************************************************************/
           #include <iostream>
          #include <conio>
          #include <stdlib>
    /*****************************************************************/
    /*****************************************************************/

                                float  a[1000];
                                int top=0,i,r;
                                char u;
                                float  input();
                                 float d,p,q,w;
                                 void push(float x);
                                 void get();
               void show(float  arr[]);
 /***********************************************************************/
 /***********************************************************************/
               void main()

               {


                 get();
               getch();}

 /*-------------------------------------------------------------------------*/
 /*-------------------------------------------------------------------------*/

               void get()
              {

                cout<<"\t\tPlease Enter  number\t";
               for(i=0;i<1;i++)

               {
               cin>>a[i];}


               show(a); }


 /*_____________________________________________________________________*/
 /*_____________________________________________________________________*/
               void   show(float  arr[])


               {
                 float  c[33];
                 int v;
                 v=0;

                 for(i=0;i<1;i++)

                 {
                  c[v]=arr[i];v++;
                 }
                  float sum=0;
                  for(i=0;i<1;i++)

                  {
                   sum=sum+c[i];
                  }

                     push(sum);
                     while(1)
                  {
                     cout<<"\n\n";
                    cout<< "chose\n\t\t + \n \t\t - \n \t\t *\n \t\t /\n";
                     cout<<"\t\tpress C for clear screen\n\t\t\Press E for exit\n"<<endl;

                       cin>>u;





                    switch(u)

                    {
                    case '+':
                     d=a[top]+input();
                    cout<<"\t\t\t\t\t\tANS="<<d<<endl;
                    push(d);
                    break;
                    case '-':
                      p=a[top]-input();
                    cout<<"\t\t\t\t\t\tANS="<<p<<endl;
                    push(p);
                    break;
                    case '*':
                     q=a[top]*input();
                    cout<<"\t\t\t\t\t\tANS="<<q<<endl;
                    push(q);
                    break;
                    case '/':
                  w=a[top]/input();
                    cout<<"\t\t\t\t\t\tANS="<<w<<endl;
                    push(w);
                    break;




                    case 'e':
                    exit(0);
                    break;
                    case 'c':
                    clrscr();
                    get();

                    break; }



                    }

               }



/*-----------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------*/
                 void push(float  x)

                 {
                   top++;

                   a[top]=x;
                 }
/*______________________________________________________________________________*/
/*______________________________________________________________________________*/

                     float  input()

                    {

                      float  t;
                      cout<<"\t\tPlease Enter  number\t\t";
                      cin>>t;
                      cout<<endl<<endl;

                      return t;

                    }

/*______________________________________________________________________________*/

Thursday, 31 January 2013

transpose of a matrix in c++

#include<iostream.h>
#include<conio.h>
void main()
{

int r,c,i,j;
int matrix[12][12];
int transpose[12][12];

cout<<"enter no of rows of matrix      ";
cin>>r;
cout<<"enter no of columns of matrix   ";
cin>>c;

cout<<"\n\n";
for(i=0;i<r;i++)
for(j=0;j<c;j++)
{cout<<"matrix["<<i<<"]["<<j<<"]"<<"    ";
cin>>matrix[i][j];}

   cout<<"\n\nMATARIX IS\n\n";
    cout<<"\n\n";
    for(i=0;i<r;i++)
    {for(j=0;j<c;j++)
    cout<<matrix[i][j]<<"\t";
    cout<<endl<<endl;}

   cout<<"TRANSPOSE IS\n\n";
    for(i=0;i<c;i++)
    {for(j=0;j<r;j++)
    cout<<matrix[j][i]<<"\t";
    cout<<endl<<endl;}


getch();
}

multiplication of two matrices in c++

#include<iostream.h>
#include<conio.h>
void main()
{

int r1,r2,c1,c2,i,j,k;
int ham[12][12];
int tum[12][12];
int mul[12][12]={0,0,0,0,0,0,0,0,0,0,0,0};

        cout<<"enter no of row of first matrix         ";
        cin>>r1;
        cout<<"enter no of columns of first matrix     ";
        cin>>c1;
        cout<<endl<<"enter no of row of 2nd  matrix          ";
        cin>>r2;
        cout<<"enter no of columns of 2nd matrix       ";
        cin>>c2;

if(c1==r2)
{
     cout<<"\n\n";
     for(i=0;i<r1;i++)
     for(j=0;j<c1;j++)
     {cout<<"ham["<<i<<"]["<<j<<"]"<<"\t" ;
     cin>>ham[i][j];}

     cout<<"\n\n";
     for(i=0;i<r2;i++)
     for(j=0;j<c2;j++)
     {cout<<"tum["<<i<<"]["<<j<<"]"<<"\t";
     cin>>tum[i][j];}

     cout<<"\n\n";
     cout<<"MULTIPLICATION OF THE MATRICES IS"<<endl<<endl;
             for(i=0;i<r1;i++)              //control no of rows
         {for(j=0;j<c2;j++)             //control no of columns
         {for(k=0;k<c1;k++)             //control two parts of each member
         mul[i][j]=mul[i][j]+ham[i][k]*tum[k][j];
         cout<<mul[i][j]<<"\t";}
         cout<<endl;}


     }                                                                          //end of if
else
     cout<<"matrices are not in order";




    getch();
}                                                                            //end of main body










additon in horizontal of matrices in c++

#include<iostream.h>
#include<conio.h>
void main()
{

int r1,r2,c1,c2,i,j;
int matrix1[12][12];
int matrix2[12][12];
int add[12][12];

        cout<<"enter no of rows of 1st matrix       ";
        cin>>r1;
        cout<<"enter no of col of 1st matrix        ";
        cin>>c1;
        cout<<"\nenter no of rows of 2nd matrix       ";
        cin>>r2;
        cout<<"enter no of col of 2nd matrix        ";
        cin>>c2;

if(r1==r2&&c1==c2)
{
   cout<<"\n\n";
    for(i=0;i<r1;i++)
    for(j=0;j<c1;j++)
    {cout<<"matrix1["<<i<<"]["<<j<<"]"<<"\t";
    cin>>matrix1[i][j];}


   cout<<"\n\n";
    for(i=0;i<r2;i++)
    for(j=0;j<c2;j++)
    {cout<<"matrix2["<<i<<"]["<<j<<"]"<<"\t";
    cin>>matrix2[i][j];}

      cout<<"\n\n";
      for(i=0;i<r1;i++)
        {for(j=0;j<c1;j++)
        cout<<matrix1[i][j]<<"\t";
      cout<<"  ";
      for(j=0;j<c2;j++)
      cout<<matrix2[i][j]<<"\t";
      cout<<"  ";
      for(j=0;j<c2;j++)
      {add[i][j]=matrix1[i][j]+matrix2[i][j];
      cout<<add[i][j]<<"\t";}
        cout<<endl<<endl;}


}                                                  //end of if
else
cout<<"\norder is not same\n";
getch();
}

Addition of matrices in c++

#include<iostream.h>
#include<conio.h>
void main()
{

int r1,r2,c1,c2,i,j;
int matrix1[12][12];
int matrix2[12][12];
int add[12][12];

        cout<<"enter no of rows of 1st matrix       ";
        cin>>r1;
        cout<<"enter no of col of 1st matrix        ";
        cin>>c1;
        cout<<"\nenter no of rows of 2nd matrix       ";
        cin>>r2;
        cout<<"enter no of col of 2nd matrix        ";
        cin>>c2;

if(r1==r2&&c1==c2)
{
   cout<<"\n\n";
    for(i=0;i<r1;i++)
    for(j=0;j<c1;j++)
    {cout<<"matrix1["<<i<<"]["<<j<<"]";
    cin>>matrix1[i][j];}


   cout<<"\n\n";
    for(i=0;i<r2;i++)
    for(j=0;j<c2;j++)
    {cout<<"matrix2["<<i<<"]["<<j<<"]";
    cin>>matrix2[i][j];}

      cout<<"\n\n";
      cout<<"the first matrix is";
      cout<<"\n\n";
        for(i=0;i<r1;i++)
        {for(j=0;j<c1;j++)
        cout<<matrix1[i][j]<<"\t";
        cout<<endl;}

      cout<<"the 2nd matrix is";
      cout<<"\n\n";
        for(i=0;i<r2;i++)
        {for(j=0;j<c2;j++)
        cout<<matrix2[i][j]<<"\t";
        cout<<endl;}

   cout<<"\nTHE RESULT OF ADDITION IS\n";
   for(i=0;i<r2;i++)
    {for(j=0;j<c2;j++)
   {add[i][j]=matrix1[i][j]+matrix2[i][j];
   cout<<add[i][j]<<"\t";}
   cout<<endl;}

}                                                  //end of if
else
cout<<"\norder is not same\n";
getch();
}

Tuesday, 22 January 2013

constructer


#include<iostream.h>
#include<conio.h>
class student
{
private:
int marks;
char grade;
public:
student () //constructer
{
marks=80;
grade='A';
}
void show()
{
cout<<"\n marks is :"<<marks<<endl;
cout<<"\n the grade is :"<<grade<<endl;
}
};
void main()
{
student s1;
cout<<"record of s1";
s1.show();
getch();
}

Queu implementation UsinG Linked list


/**********************************************************/
               /*Queu implementation UsinG Linked list*/
                 /*Header files are!*/

                                                         #include <iostream>
                                                         #include <conio>
                                                         #include <stdlib>

         /*Define a class */


                    class cQueu
                 {
                   private:
   /*ABSTDT are!*/

                               struct node
                               { int data;
                                 node *link;
                               };
                        node    *front;
                        node    *rear;


                 public:

                   cQueu();
                   ~cQueu();
                   void insert();
                   void del();
                   void show();
            };    /*End of class */

                       /*Constructor is define*/
                        cQueu::cQueu()

                      {
                         front=rear=NULL;
                      }

                      /*Distructor is define*/


                        cQueu::~cQueu()

                       {
                         cout<<"Node are destoryed\n";

                       }


                /*insert() function define here*/

                      void cQueu::insert()

                    {
                         node *t;

                         t=new node;

                         if(t==NULL)

                           cout<<"Overflow\n";

                        else

                     {
                           cout<<"Enter element\t";
                           cin>>t->data;
                           t->link=NULL;

                         if(rear==NULL)

                            rear=front=t;

                        else

                      {
                        rear->link=t;
                      }



                     }

                    }                /*Defining delete function()*/




                     void  cQueu::del()

                    {
                      node *n;

                      if(front==NULL)


                      cout<<"Under flow\n";

                      else

                      {
                         cout<<front->data<<"\t:"<<"Has been deleted\n";

                         n=front;
                         front=front->link;
                         delete n;
                      }
                    }
                         /*Defining  show fun()*/
                       void cQueu::show()

                       {
                             if(front==NULL&& rear==NULL)
                             cout<<"Queu is empty\n";

                             else


                             {
                              while(rear!=NULL)

                                {cout<<rear->data<<"  ";
                                cout<<endl;
                                rear=rear->link;  }


                             }

                       }

                            /*Defining main function()*/
                                  void main()
                              {
                                  cQueu m;

                                  int opt;

                                  while(1)

                               {
                                 cout<<"Press 1 to enter element in the Queu:\n";
                                 cout<<"Press 2 to delete element in the Queu:\n";
                                 cout<<"Press 3 to show the element of the Queu:\n";
                                 cout<<"Press 4 to Exit the program from the main menu\n";


                                 cin>>opt;


                                 switch(opt)
                               {
                                 case 1:m.insert();break;
                                 case 2:m.del();break;
                                 case 3:m.show();break;
                                 case 4:exit(1);break;
                                 case 5:cout<<"\b";


                               }


                               }

                              getch();}

link list implementation


/*===================link list implementation=============*/
                   #include <iostream>
                   #include <conio>
                   #include <stdlib>
                   /***************/

      struct node
    {
       int data;

       node *link;
    };

           node *head=NULL;


     void main()
{
   void append();
   void display();
   void insert();
   void dele();
    int opt;
   while(1)
 {
    cout<<"*********************************************\n";
    cout<<"=============================================\n";
    cout<<"      MAIN MENU\n";
    cout<<"                    1:append                    \n";
    cout<<"                    2:Display                  \n";
     cout<<"                   3:Insert                  \n";
      cout<<"                  4:Delete                  \n";
      cout<<"                  5:EXIT                 \n";
    cout<<"=============================================\n";
    cout<<"**********************************************\n";
    cout<<endl;
    cin>>opt;
    switch(opt)
  {
    case 1:
    append();
    break;

    case 2:
    display();
   break;
   case 3:
     insert();
     break;

     case 4:

     dele();

     break;

     case 5:

     exit(0);

     break;
 }}                   getch();
                                }



             /**************************************/
                  void append()
                {
                   node *t,*n=head;
                 t=new node;

                    cout<<"               Enter element in link list\t\t";

                  cin>>t->data;
                  cout<<endl;

               t->link=NULL;

                 if(head==NULL)
                   head=t;

                   else
                 {

               while(n->link!=NULL)

                { n=n->link; }
                 n->link=t;

                   }
                           }
             /**************************************************/
                void display()
              {  node *t,*n=head;
                   if(n==NULL)

                 cout<<"link list is empty:";
              else
            {
              while(n!=NULL)

               { cout<<"    Value :                                 \t"<<n->data<<endl;
                n=n->link;}
            }

              }           void insert()
                  {
                     node *t,*n=head;
                    int num;

                    cout<<"Enter integer value:\t\t";
                    cin>>num;
                  cout<<endl;
                  while( (n->data!=num) && (n!=NULL) )

                   n=n->link;

                   if(n==NULL)

                cout<<"           Element not found                             \n\n ";


                else

              {
                         t=new node ;


                         cout<<"Enter element\t\t";
                         cin>>t->data;

                         cout<<endl;
                         t->link=n->link;
                         n->link=t;
               }                             }


                          /*================================================*/
                                     void dele()
                                  {
                                       node *t,*n=head;
                                       int num;
                                  if(head==NULL)
                                  {
                                    cout<<"List is Empty\n\n";
                                    return;
                                  }
                                        cout<<"        Enter element to be deleted \t\t";
                                        cin>>num;
                                        cout<<endl;
                                     while(n->data!=num)

                                     {
                                        t=n;
                                        n->link;

                                        if(n==NULL)
                                      {
                                         cout<<"            Element not found\n\n";

                                       }
                                          return ;}
                                                    if(n==head)
                                                  {
                                                     head=n->link;
                                                     delete n;
                                                   }

                                                         else

                                                     {
                                                        t->link=n->link;
                                                        delete n;
                                                     }

                                               }








Priorities Queu implementation


/*     Priorities Queu implementation */

     /*Header files are define As*/
                                            #include <iostream>
                                            #include <conio>
                                            #include <stdlib>


/*Defining a class */

                           class cQueu

                         {
                            public:
                                   cQueu();
                                   ~cQueu();
                                   void insert();
                                   void del();

                            private:
                              struct node
                              {int data;
                              int pr;
                              node *link;};

                              node *front ;


                         };
                                   /*Ending of class */

                              cQueu::cQueu()

                            {
                               front =NULL;
                            }

                                 /*Distructor*/

                                 cQueu::~cQueu()

                               {

                                  cout<<"UR program End and ur data will be lose";
                               }

                                /*Defining a member function void insert()*/




                         void cQueu::insert()

                                                     {
                                                        node *n=front,*p=NULL,*t;

                                                      t=new node ;


                                                      if(t==NULL)

                                                      cout<<"\t\t\tOVER_FLOW\n";
                                                      else
                                                   {

                                                       cout<<"\tEnter element in Queu:\t";
                                                       cin>>t->data;

                                                       cout<<"\tEnter priority\t:";

                                                       cin>>t->pr;



                                                       if(front==NULL)

                                                       {t->link=NULL;

                                                         front=t; }



                                             else
                                                   {

                                                      while((n->pr>=t->pr)&&(n!=NULL))
                                                   {    p=n;
                                                      n=n->link;}


                                                      if(p==NULL)
                                                      {t->link=front;
                                                        front=t;
                                                      }


                                                              else
                                                           {
                                                              t->link=p->link;
                                                              p->link=t;


                                                           } }}



                                                      }
/**DElete function ()*/
                        void cQueu::del()

                        {
                          node *n;

                          if(front==NULL)


                          cout<<"\t\t\tUndr flow\n";

                          else
                          {cout<<front->data<<":\tWith priority\t:"<<front->pr<<"\tDeleted\n";

                          n=front;

                          front=front->link;
                          delete n;

                          }


                        }
                                   void main()

                                   {  cQueu m;

                                      int opt;

                                      while(1)

                                    {
                                       cout<<"\t\t1:Insert element into Queu:\n";
                                       cout<<"\t\t2:Delete element from the Queu\n";
                                       cout<<"\t\t3:Exit\n";
                                       cout<<"\t\t4:PRSS 4 KEY TO CLEAR SCREEN\n";

                                       cin>>opt;

                                     switch(opt)

                                   {  case 1:m.insert(); break;
                                      case 2:m.del();break;
                                      case 3:exit(0);break;
                                      case 4: clrscr();break;


                                   }


                                    }



                                   getch();}