常见数据结构list template

#include<iostream>
using namespace std;

template<typename T> 
struct Node{
       Node(T& d):c(d),next(0),pref(0){}
       T c;
       Node *next,*pref;
       };
       
template<typename T>
class List{
      Node<T> *first,*last;
public:
       List();
       void add(T& c);
       void remove(T& c);
       Node<T>* find(T& c);
       void print();
       ~List();
      };
template<typename T>
List<T>::List():first(0),last(0){}

template<typename T>
void List<T>::add(T& n){
     Node<T>* p=new Node<T>(n);
     p->next=first;
     first=p;
     (last ? p->next->pref : last)=p;
     }
template<typename T>
void List<T>::remove(T& n){
     Node<T>* p=find(n);
     if(!p)  return;
     (p->next?p->next->pref:last)=p->pref;
     (p->pref?p->pref->next:first)=p->next;
     delete p;
     }

template<typename T>
Node<T>* List<T>::find(T& n){
         for(Node<T>* p=first;p;p=p->next)
            if(p->c==n)  return p;
         return 0;
         }
template<typename T>
List<T>::~List(){
                 for(Node<T>* p;p=first;delete p)
                    first=first->next;
                 }
template<typename T>
void List<T>::print(){
     for(Node<T>* p=first;p;p=p->next)
        cout<<p->c<<"  ";
     cout<<"\n";
     }
     


int main(int argc, char *argv[])
{
    //    template List<double>;
//    template List<int>;
    List<double> dList;
    double input1 = 3.6;
    double input2 = 5.8;
    dList.add(input1);
    dList.add(input2);
    dList.print();
    
    List<int> iList;
    int n1 = 5;
    int n2 = 8;
    iList.add(n1);
    iList.add(n2);

    iList.print();
    
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值