list.cpp
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. // VirtualDub 2.x (Nina) - Video processing and capture application
  2. // Copyright (C) 1998-2001 Avery Lee, All Rights Reserved.
  3. //
  4. // This program is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation; either version 2 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // This program is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. // GNU General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU General Public License
  15. // along with this program; if not, write to the Free Software
  16. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. ///////////////////////////////////////////////////////////////////////////
  18. //
  19. // For those of you who say this looks familiar... it should.  This is
  20. // the same linked-list style that the Amiga Exec uses, with dummy head
  21. // and tail nodes.  It's really a very convienent way to implement
  22. // doubly-linked lists.
  23. //
  24. #include "list.h"
  25. List::List() {
  26. Init();
  27. }
  28. void List::Init() {
  29. head.next = tail.prev = 0;
  30. head.prev = &tail;
  31. tail.next = &head;
  32. }
  33. ListNode *List::RemoveHead() {
  34. if (head.prev->prev) {
  35. ListNode *t = head.prev;
  36. head.prev->Remove();
  37. return t;
  38. }
  39. return 0;
  40. }
  41. ListNode *List::RemoveTail() {
  42. if (tail.next->next) {
  43. ListNode *t = tail.next;
  44. tail.next->Remove();
  45. return t;
  46. }
  47. return 0;
  48. }
  49. void List::Take(List &from) {
  50. if (from.IsEmpty())
  51. return;
  52. head.prev = from.head.prev;
  53. tail.next = from.tail.next;
  54. head.prev->next = &head;
  55. tail.next->prev = &tail;
  56. from.Init();
  57. }