⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 list.h

📁 利用C
💻 H
字号:
// Copyright (C) 2003 Johan Jansson.// Licensed under the GNU LGPL Version 2.1.//// Modified by Anders Logg, 2005.#ifndef __LIST_H#define __LIST_H#include <list>#include <iterator>namespace dolfin{  /// List is a container that provides O(n) access time to elements  /// and O(n) memory overhead. However, a List can be grown/shrunk without  /// reallocation and spliced together with other lists, etc.  ///  /// It is a wrapper for std::list (doubly-linked list), so see the STL  /// manual for further details: http://www.sgi.com/tech/stl/   template <class T>  class List : public std::list<T>  {  public:        /// Create empty list    List() : std::list<T>() {}    /// Copy constructor    List(const List<T>& x) : std::list<T>(x) {}      };  }#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -