ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 자료구조...51
    일지 2020. 12. 14. 11:31

    연결 리스트 큐 생성자 구현

     

    LinkedListQueue.cpp

    /// <summary>
    /// 비어있고 초기 용량을 가지는 ArrayListQueue를 생성한다.
    /// </summary>
    /// <param name="capacity">생성할 공간의 크기(기본: 10)</param>
    ArrayListQueue::ArrayListQueue(int capacity)
    	: m_items(capacity)
    {
    }
    
    /// <summary>
    /// 다른 ArrayListQueue과 동일한 값을 가지는 ArrayListQueue를 생성한다.
    /// </summary>
    /// <param name="other">기준이 될 ArrayListQueue</param>
    ArrayListQueue::ArrayListQueue(const ArrayListQueue& other)
    	: m_items(other.m_items)
    {
    }

    댓글

Designed by Tistory.