C++链表

C++链表,明天面试考前练习,主要熟悉一下环境,求面霸笼罩,,,

C++链表
#include <iostream>
using namespace std;
typedef struct Node{
    int data;
    Node *next;
} Node;
int main()
{
    Node* head,*last,*temp;
    int num,i;
    cin>>num;
    for(i=0;i<=num;i++)
    {
        temp=new Node();
        temp->data=i;
        if(i==0)
            head=temp;
        else
            last->next=temp;
        temp->next=NULL;
        last=temp;
    }
    Node *p=head;
    while(p!=NULL)
    {
        cout<<p->data<<endl;
        p=p->next;
    }
    cout<<"hello success!"<<endl;
    return 0;
}
C++链表

 输出三角形:

C++链表
#include <iostream>
using namespace std;
int main()
{
    int num=9,i,j,k;
    for(i=1;i<=num;i++)
    {
        for(k=num-i;k>=0;k--)
            cout<<" ";
        for(j=0;j<i;j++)
        cout<<i<<" ";
        cout<<endl;
    }
    return 0;
}
C++链表

C++链表

C++链表,布布扣,bubuko.com

C++链表

上一篇:C++编程问题--glibc detected *** ./a.out: munmap_chunk(): invalid pointer: xxxxxx


下一篇:C++基础 01 简介和开发环境