linux c++线程池的实现

http://blog.csdn.net/zhoubl668/article/details/8927090?t=1473221020107

线程池的原理大家都知道,直接上代码了^_^

Thread.h

[cpp] view plaincopy
  1. #ifndef __THREAD_H   
  2. #define __THREAD_H   
  3.   
  4. #include <vector>   
  5. #include <string>   
  6. #include <pthread.h>   
  7.   
  8. using namespace std;  
  9.   
  10. /** 
  11.  * 执行任务的类,设置任务数据并执行 
  12.  */  
  13. class CTask  
  14. {  
  15. protected:  
  16.     string m_strTaskName;  /** 任务的名称 */  
  17.     void* m_ptrData;       /** 要执行的任务的具体数据 */  
  18. public:  
  19.     CTask(){}  
  20.     CTask(string taskName)  
  21.     {  
  22.         m_strTaskName = taskName;  
  23.         m_ptrData = NULL;  
  24.     }  
  25.     virtual int Run()= 0;  
  26.     void SetData(void* data);    /** 设置任务数据 */  
  27.   
  28. public:  
  29.     virtual ~CTask(){}  
  30. };  
  31.   
  32. /** 
  33.  * 线程池管理类的实现 
  34.  */  
  35. class CThreadPool  
  36. {  
  37. private:  
  38.     static  vector<CTask*> m_vecTaskList;     /** 任务列表 */  
  39.     static  bool shutdown;                    /** 线程退出标志 */           
  40.     int     m_iThreadNum;                     /** 线程池中启动的线程数 */  
  41.     pthread_t   *pthread_id;  
  42.       
  43.     static pthread_mutex_t m_pthreadMutex;    /** 线程同步锁 */  
  44.     static pthread_cond_t m_pthreadCond;      /** 线程同步的条件变量 */  
  45.   
  46. protected:  
  47.     static void* ThreadFunc(void * threadData); /** 新线程的线程回调函数 */  
  48.     static int MoveToIdle(pthread_t tid);       /** 线程执行结束后,把自己放入到空闲线程中 */  
  49.     static int MoveToBusy(pthread_t tid);       /** 移入到忙碌线程中去 */  
  50.       
  51.     int Create();          /** 创建线程池中的线程 */  
  52.   
  53. public:  
  54.     CThreadPool(int threadNum = 10);  
  55.     int AddTask(CTask *task);      /** 把任务添加到任务队列中 */  
  56.     int StopAll();                 /** 使线程池中的线程退出 */  
  57.     int getTaskSize();             /** 获取当前任务队列中的任务数 */  
  58. };  
  59.   
  60. #endif  
[cpp] view plain copy
  1. #ifndef __THREAD_H  
  2. #define __THREAD_H  
  3.   
  4. #include <vector>  
  5. #include <string>  
  6. #include <pthread.h>  
  7.   
  8. using namespace std;  
  9.   
  10. /** 
  11.  * 执行任务的类,设置任务数据并执行 
  12.  */  
  13. class CTask  
  14. {  
  15. protected:  
  16.     string m_strTaskName;  /** 任务的名称 */  
  17.     void* m_ptrData;       /** 要执行的任务的具体数据 */  
  18. public:  
  19.     CTask(){}  
  20.     CTask(string taskName)  
  21.     {  
  22.         m_strTaskName = taskName;  
  23.         m_ptrData = NULL;  
  24.     }  
  25.     virtual int Run()= 0;  
  26.     void SetData(void* data);    /** 设置任务数据 */  
  27.   
  28. public:  
  29.     virtual ~CTask(){}  
  30. };  
  31.   
  32. /** 
  33.  * 线程池管理类的实现 
  34.  */  
  35. class CThreadPool  
  36. {  
  37. private:  
  38.     static  vector<CTask*> m_vecTaskList;     /** 任务列表 */  
  39.     static  bool shutdown;                    /** 线程退出标志 */           
  40.     int     m_iThreadNum;                     /** 线程池中启动的线程数 */  
  41.     pthread_t   *pthread_id;  
  42.       
  43.     static pthread_mutex_t m_pthreadMutex;    /** 线程同步锁 */  
  44.     static pthread_cond_t m_pthreadCond;      /** 线程同步的条件变量 */  
  45.   
  46. protected:  
  47.     static void* ThreadFunc(void * threadData); /** 新线程的线程回调函数 */  
  48.     static int MoveToIdle(pthread_t tid);       /** 线程执行结束后,把自己放入到空闲线程中 */  
  49.     static int MoveToBusy(pthread_t tid);       /** 移入到忙碌线程中去 */  
  50.       
  51.     int Create();          /** 创建线程池中的线程 */  
  52.   
  53. public:  
  54.     CThreadPool(int threadNum = 10);  
  55.     int AddTask(CTask *task);      /** 把任务添加到任务队列中 */  
  56.     int StopAll();                 /** 使线程池中的线程退出 */  
  57.     int getTaskSize();             /** 获取当前任务队列中的任务数 */  
  58. };  
  59.   
  60. #endif  

 

实现文件

Thread.cpp

[cpp] view plaincopy
  1. #include "Thread.h"   
  2. #include <iostream>   
  3.   
  4. void CTask::SetData(void * data)  
  5. {  
  6.     m_ptrData = data;  
  7. }  
  8.   
  9. vector<CTask*> CThreadPool::m_vecTaskList;         //任务列表   
  10. bool CThreadPool::shutdown = false;  
  11.       
  12. pthread_mutex_t CThreadPool::m_pthreadMutex = PTHREAD_MUTEX_INITIALIZER;   
  13. pthread_cond_t CThreadPool::m_pthreadCond = PTHREAD_COND_INITIALIZER;  
  14.   
  15. /** 
  16.  * 线程池管理类构造函数 
  17.  */  
  18. CThreadPool::CThreadPool(int threadNum)  
  19. {  
  20.     this->m_iThreadNum = threadNum;  
  21.     cout << "I will create " << threadNum << " threads" << endl;  
  22.     Create();  
  23. }  
  24.   
  25. /** 
  26.  * 线程回调函数 
  27.  */  
  28. void* CThreadPool::ThreadFunc(void* threadData)  
  29. {  
  30.     pthread_t tid = pthread_self();  
  31.     while (1)  
  32.     {  
  33.         pthread_mutex_lock(&m_pthreadMutex);  
  34.         while (m_vecTaskList.size() == 0 && !shutdown)  
  35.         {  
  36.             pthread_cond_wait(&m_pthreadCond, &m_pthreadMutex);  
  37.         }  
  38.           
  39.         if (shutdown)  
  40.         {  
  41.             pthread_mutex_unlock(&m_pthreadMutex);  
  42.             printf("thread %lu will exit/n", pthread_self());  
  43.             pthread_exit(NULL);   
  44.         }  
  45.           
  46.         printf("tid %lu run/n", tid);  
  47.         vector<CTask*>::iterator iter = m_vecTaskList.begin();  
  48.           
  49.         /** 
  50.         * 取出一个任务并处理之 
  51.         */  
  52.         CTask* task = *iter;  
  53.         if (iter != m_vecTaskList.end())  
  54.         {  
  55.             task = *iter;  
  56.             m_vecTaskList.erase(iter);  
  57.         }  
  58.           
  59.         pthread_mutex_unlock(&m_pthreadMutex);  
  60.           
  61.         task->Run(); /** 执行任务 */  
  62.         printf("tid:%lu idle/n", tid);  
  63.     }  
  64.     return (void*)0;  
  65. }  
  66.   
  67. /** 
  68.  * 往任务队列里边添加任务并发出线程同步信号 
  69.  */  
  70. int CThreadPool::AddTask(CTask *task)  
  71. {  
  72.     pthread_mutex_lock(&m_pthreadMutex);  
  73.     this->m_vecTaskList.push_back(task);  
  74.     pthread_mutex_unlock(&m_pthreadMutex);  
  75.     pthread_cond_signal(&m_pthreadCond);  
  76.     return 0;  
  77. }  
  78.   
  79. /** 
  80.  * 创建线程 
  81.  */  
  82. int CThreadPool::Create()  
  83. {  
  84.     pthread_id = (pthread_t*)malloc(sizeof(pthread_t) * m_iThreadNum);  
  85.     for(int i = 0; i < m_iThreadNum; i++)  
  86.     {  
  87.         pthread_create(&pthread_id[i], NULL, ThreadFunc, NULL);  
  88.     }  
  89.     return 0;  
  90. }  
  91.   
  92. /** 
  93.  * 停止所有线程 
  94.  */  
  95. int CThreadPool::StopAll()  
  96. {  
  97.     /** 避免重复调用 */  
  98.     if (shutdown)  
  99.     {  
  100.         return -1;    
  101.     }  
  102.     printf("Now I will end all threads!!/n");  
  103.     /** 唤醒所有等待线程,线程池要销毁了 */  
  104.     shutdown = true;  
  105.     pthread_cond_broadcast(&m_pthreadCond);  
  106.       
  107.     /** 阻塞等待线程退出,否则就成僵尸了 */  
  108.     for (int i = 0; i < m_iThreadNum; i++)  
  109.     {  
  110.         pthread_join(pthread_id[i], NULL);    
  111.     }  
  112.       
  113.     free(pthread_id);  
  114.     pthread_id = NULL;  
  115.       
  116.     /** 销毁条件变量和互斥体 */  
  117.     pthread_mutex_destroy(&m_pthreadMutex);  
  118.     pthread_cond_destroy(&m_pthreadCond);  
  119.       
  120.     return 0;  
  121. }  
  122.   
  123. /** 
  124.  * 获取当前队列中任务数 
  125.  */  
  126. int CThreadPool::getTaskSize()  
  127. {  
  128.     return m_vecTaskList.size();      
  129. }  
[cpp] view plain copy
  1. #include "Thread.h"  
  2. #include <iostream>  
  3.   
  4. void CTask::SetData(void * data)  
  5. {  
  6.     m_ptrData = data;  
  7. }  
  8.   
  9. vector<CTask*> CThreadPool::m_vecTaskList;         //任务列表  
  10. bool CThreadPool::shutdown = false;  
  11.       
  12. pthread_mutex_t CThreadPool::m_pthreadMutex = PTHREAD_MUTEX_INITIALIZER;   
  13. pthread_cond_t CThreadPool::m_pthreadCond = PTHREAD_COND_INITIALIZER;  
  14.   
  15. /** 
  16.  * 线程池管理类构造函数 
  17.  */  
  18. CThreadPool::CThreadPool(int threadNum)  
  19. {  
  20.     this->m_iThreadNum = threadNum;  
  21.     cout << "I will create " << threadNum << " threads" << endl;  
  22.     Create();  
  23. }  
  24.   
  25. /** 
  26.  * 线程回调函数 
  27.  */  
  28. void* CThreadPool::ThreadFunc(void* threadData)  
  29. {  
  30.     pthread_t tid = pthread_self();  
  31.     while (1)  
  32.     {  
  33.         pthread_mutex_lock(&m_pthreadMutex);  
  34.         while (m_vecTaskList.size() == 0 && !shutdown)  
  35.         {  
  36.             pthread_cond_wait(&m_pthreadCond, &m_pthreadMutex);  
  37.         }  
  38.           
  39.         if (shutdown)  
  40.         {  
  41.             pthread_mutex_unlock(&m_pthreadMutex);  
  42.             printf("thread %lu will exit/n", pthread_self());  
  43.             pthread_exit(NULL);   
  44.         }  
  45.           
  46.         printf("tid %lu run/n", tid);  
  47.         vector<CTask*>::iterator iter = m_vecTaskList.begin();  
  48.           
  49.         /** 
  50.         * 取出一个任务并处理之 
  51.         */  
  52.         CTask* task = *iter;  
  53.         if (iter != m_vecTaskList.end())  
  54.         {  
  55.             task = *iter;  
  56.             m_vecTaskList.erase(iter);  
  57.         }  
  58.           
  59.         pthread_mutex_unlock(&m_pthreadMutex);  
  60.           
  61.         task->Run(); /** 执行任务 */  
  62.         printf("tid:%lu idle/n", tid);  
  63.     }  
  64.     return (void*)0;  
  65. }  
  66.   
  67. /** 
  68.  * 往任务队列里边添加任务并发出线程同步信号 
  69.  */  
  70. int CThreadPool::AddTask(CTask *task)  
  71. {  
  72.     pthread_mutex_lock(&m_pthreadMutex);  
  73.     this->m_vecTaskList.push_back(task);  
  74.     pthread_mutex_unlock(&m_pthreadMutex);  
  75.     pthread_cond_signal(&m_pthreadCond);  
  76.     return 0;  
  77. }  
  78.   
  79. /** 
  80.  * 创建线程 
  81.  */  
  82. int CThreadPool::Create()  
  83. {  
  84.     pthread_id = (pthread_t*)malloc(sizeof(pthread_t) * m_iThreadNum);  
  85.     for(int i = 0; i < m_iThreadNum; i++)  
  86.     {  
  87.         pthread_create(&pthread_id[i], NULL, ThreadFunc, NULL);  
  88.     }  
  89.     return 0;  
  90. }  
  91.   
  92. /** 
  93.  * 停止所有线程 
  94.  */  
  95. int CThreadPool::StopAll()  
  96. {  
  97.     /** 避免重复调用 */  
  98.     if (shutdown)  
  99.     {  
  100.         return -1;    
  101.     }  
  102.     printf("Now I will end all threads!!/n");  
  103.     /** 唤醒所有等待线程,线程池要销毁了 */  
  104.     shutdown = true;  
  105.     pthread_cond_broadcast(&m_pthreadCond);  
  106.       
  107.     /** 阻塞等待线程退出,否则就成僵尸了 */  
  108.     for (int i = 0; i < m_iThreadNum; i++)  
  109.     {  
  110.         pthread_join(pthread_id[i], NULL);    
  111.     }  
  112.       
  113.     free(pthread_id);  
  114.     pthread_id = NULL;  
  115.       
  116.     /** 销毁条件变量和互斥体 */  
  117.     pthread_mutex_destroy(&m_pthreadMutex);  
  118.     pthread_cond_destroy(&m_pthreadCond);  
  119.       
  120.     return 0;  
  121. }  
  122.   
  123. /** 
  124.  * 获取当前队列中任务数 
  125.  */  
  126. int CThreadPool::getTaskSize()  
  127. {  
  128.     return m_vecTaskList.size();      
  129. }  

 

main函数文件

[cpp] view plaincopy
  1. #include "Thread.h"   
  2. #include <iostream>   
  3.   
  4. class CMyTask: public CTask  
  5. {  
  6. public:  
  7.     CMyTask(){}  
  8.       
  9.     inline int Run()  
  10.     {  
  11.         printf("%s/n", (char*)this->m_ptrData);  
  12.         sleep(10);  
  13.         return 0;  
  14.     }  
  15. };  
  16.   
  17. int main()  
  18. {  
  19.     CMyTask taskObj;  
  20.       
  21.     char szTmp[] = "this is the first thread running";  
  22.     taskObj.SetData((void*)szTmp);  
  23.     CThreadPool threadPool(10);  
  24.       
  25.     for(int i = 0; i < 20; i++)  
  26.     {  
  27.         threadPool.AddTask(&taskObj);  
  28.     }  
  29.       
  30.     while(1)  
  31.     {  
  32.         printf("there are still %d tasks need to handle/n", threadPool.getTaskSize());  
  33.         if (threadPool.getTaskSize() == 0)  
  34.         {  
  35.             if (threadPool.StopAll() == -1)  
  36.             {     
  37.                 printf("Now I will exit from main/n");  
  38.                 exit(0);  
  39.             }  
  40.         }  
  41.         sleep(2);  
  42.     }  
  43.       
  44.     return 0;  
  45. }  
[cpp] view plain copy
  1. #include "Thread.h"  
  2. #include <iostream>  
  3.   
  4. class CMyTask: public CTask  
  5. {  
  6. public:  
  7.     CMyTask(){}  
  8.       
  9.     inline int Run()  
  10.     {  
  11.         printf("%s/n", (char*)this->m_ptrData);  
  12.         sleep(10);  
  13.         return 0;  
  14.     }  
  15. };  
  16.   
  17. int main()  
  18. {  
  19.     CMyTask taskObj;  
  20.       
  21.     char szTmp[] = "this is the first thread running";  
  22.     taskObj.SetData((void*)szTmp);  
  23.     CThreadPool threadPool(10);  
  24.       
  25.     for(int i = 0; i < 20; i++)  
  26.     {  
  27.         threadPool.AddTask(&taskObj);  
  28.     }  
  29.       
  30.     while(1)  
  31.     {  
  32.         printf("there are still %d tasks need to handle/n", threadPool.getTaskSize());  
  33.         if (threadPool.getTaskSize() == 0)  
  34.         {  
  35.             if (threadPool.StopAll() == -1)  
  36.             {     
  37.                 printf("Now I will exit from main/n");  
  38.                 exit(0);  
  39.             }  
  40.         }  
  41.         sleep(2);  
  42.     }  
  43.       
  44.     return 0;  
  45. }  

 

Makefile文件

[cpp] view plaincopy
  1. CC := g++  
  2. TARGET := threadpool  
  3. INCLUDE := -I./  
  4. LIBS := -lpthread   
  5.   
  6. # C++语言编译参数   
  7. CXXFLAGS := -g -Wall -D_REENTRANT   
  8.   
  9. # C预处理参数   
  10. # CPPFLAGS :=    
  11.   
  12. OBJECTS := test.o Thread.o   
  13.   
  14. $(TARGET): $(OBJECTS)   
  15.     $(CC) -o $(TARGET) $(OBJECTS) $(LIBS)   
  16.   
  17. # $@表示所有目标集   
  18. %.o:%.cpp   
  19.     $(CC) -c $(CXXFLAGS) $(INCLUDE) $< -o $@   
  20.   
  21. .PHONY : clean  
  22. clean:   
  23.     -rm -f $(OBJECTS) $(TARGET)  
[cpp] view plain copy
  1. CC := g++  
  2. TARGET := threadpool  
  3. INCLUDE := -I./  
  4. LIBS := -lpthread   
  5.   
  6. # C++语言编译参数  
  7. CXXFLAGS := -g -Wall -D_REENTRANT   
  8.   
  9. # C预处理参数  
  10. # CPPFLAGS :=   
  11.   
  12. OBJECTS := test.o Thread.o   
  13.   
  14. $(TARGET): $(OBJECTS)   
  15.     $(CC) -o $(TARGET) $(OBJECTS) $(LIBS)   
  16.   
  17. # $@表示所有目标集  
  18. %.o:%.cpp   
  19.     $(CC) -c $(CXXFLAGS) $(INCLUDE) $< -o $@   
  20.   
  21. .PHONY : clean  
  22. clean:   
  23.     -rm -f $(OBJECTS) $(TARGET)  

 

在Linux上的输出:

[xhtml] view plaincopy
  1. I will create 10 threads  
  2. there are still 10 tasks need to handle  
  3. tid 3086535568 run  
  4. this is the first thread running  
  5. tid 3084434320 run  
  6. this is the first thread running  
  7. tid 3082333072 run  
  8. this is the first thread running  
  9. tid 3080231824 run  
  10. this is the first thread running  
  11. tid 3078130576 run  
  12. this is the first thread running  
  13. tid 3076029328 run  
  14. this is the first thread running  
  15. tid 3073928080 run  
  16. this is the first thread running  
  17. tid 3071826832 run  
  18. this is the first thread running  
  19. tid 3069725584 run  
  20. this is the first thread running  
  21. tid 3067624336 run  
  22. this is the first thread running  
  23. there are still 0 tasks need to handle  
  24. Now I will end all threads!!  
  25. tid:3086535568 idle  
  26. tid:3078130576 idle  
  27. thread 3078130576 will exit  
  28. tid:3076029328 idle  
  29. thread 3076029328 will exit  
  30. tid:3073928080 idle  
  31. thread 3073928080 will exit  
  32. tid:3071826832 idle  
  33. thread 3071826832 will exit  
  34. tid:3069725584 idle  
  35. thread 3069725584 will exit  
  36. tid:3067624336 idle  
  37. thread 3067624336 will exit  
  38. tid:3084434320 idle  
  39. thread 3084434320 will exit  
  40. thread 3086535568 will exit  
  41. tid:3082333072 idle  
  42. thread 3082333072 will exit  
  43. tid:3080231824 idle  
  44. thread 3080231824 will exit  
  45. there are still 0 tasks need to handle  
  46. Now I will exit from main  
[xhtml] view plain copy
  1. I will create 10 threads  
  2. there are still 10 tasks need to handle  
  3. tid 3086535568 run  
  4. this is the first thread running  
  5. tid 3084434320 run  
  6. this is the first thread running  
  7. tid 3082333072 run  
  8. this is the first thread running  
  9. tid 3080231824 run  
  10. this is the first thread running  
  11. tid 3078130576 run  
  12. this is the first thread running  
  13. tid 3076029328 run  
  14. this is the first thread running  
  15. tid 3073928080 run  
  16. this is the first thread running  
  17. tid 3071826832 run  
  18. this is the first thread running  
  19. tid 3069725584 run  
  20. this is the first thread running  
  21. tid 3067624336 run  
  22. this is the first thread running  
  23. there are still 0 tasks need to handle  
  24. Now I will end all threads!!  
  25. tid:3086535568 idle  
  26. tid:3078130576 idle  
  27. thread 3078130576 will exit  
  28. tid:3076029328 idle  
  29. thread 3076029328 will exit  
  30. tid:3073928080 idle  
  31. thread 3073928080 will exit  
  32. tid:3071826832 idle  
  33. thread 3071826832 will exit  
  34. tid:3069725584 idle  
  35. thread 3069725584 will exit  
  36. tid:3067624336 idle  
  37. thread 3067624336 will exit  
  38. tid:3084434320 idle  
  39. thread 3084434320 will exit  
  40. thread 3086535568 will exit  
  41. tid:3082333072 idle  
  42. thread 3082333072 will exit  
  43. tid:3080231824 idle  
  44. thread 3080231824 will exit  
  45. there are still 0 tasks need to handle  
  46. Now I will exit from main  

 


本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/383764.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

树启发式合并入门

所谓启发式合并&#xff0c;就是一种符合直觉的合并方法&#xff1a;将小的子树合并在大的子树上。 这些问题一般是相似的问题背景&#xff1a;都是树上的计数问题&#xff0c;都不能直接从上往下进行暴力&#xff0c;都需要从下往上计数时对子树信息进行运算从而得到父亲节点的…

链栈基本操作

http://blog.csdn.net/jwentao01/article/details/46765517###;栈基本概念&#xff1a; 栈&#xff08;stack&#xff09;是限定在表尾进行插入和删除操作的线性表&#xff08;或单链表&#xff09;。 //只能在一段进行插入和删除&#xff0c;因此不存在&#xff0c;在中间进行…

Linux网络编程---I/O复用模型之select

https://blog.csdn.net/men_wen/article/details/53456435Linux网络编程—I/O复用模型之select 1. IO复用模型 IO复用能够预先告知内核&#xff0c;一旦发现进程指定的一个或者多个IO条件就绪&#xff0c;它就通知进程。IO复用阻塞在select或poll系统调用上&#xff0c;而不是阻…

UVa12633-Super Rooks on Chessboard-容斥+FFT

题目大意就是给你一个R*C的棋盘&#xff0c;上面有超级兵&#xff0c;这种超级兵会攻击 同一行、同一列、同一主对角线的所有元素&#xff0c;现在给你N个超级兵的坐标&#xff0c;需要你求出有多少方块是不能被攻击到的(R,C,N<50000) 遇到这种计数问题就要联想到容斥&#…

Linux网络编程---I/O复用模型之poll

https://blog.csdn.net/men_wen/article/details/53456474Linux网络编程—I/O复用模型之poll 1.函数poll poll系统调用和select类似&#xff0c;也是在指定时间内轮询一定数量的文件描述符&#xff0c;以测试其中是否有就绪者。 #include <poll.h>int poll(struct pollfd…

FFT模板

整理了一下&#xff0c;自己写了一下模板 const double PIacos(-1.0); struct complex {double r,i;complex(double _r0,double _i0):r(_r),i(_i){}complex operator (const complex &b) {return complex(rb.r,ib.i);}complex operator -(const complex &b) {return c…

Linux网络编程---I/O复用模型之epoll

https://blog.csdn.net/men_wen/article/details/53456474 Linux网络编程—I/O复用模型之epoll 1. epoll模型简介 epoll是Linux多路服用IO接口select/poll的加强版&#xff0c;e对应的英文单词就是enhancement&#xff0c;中文翻译为增强&#xff0c;加强&#xff0c;提高&…

POJ 1741tree-点分治入门

学习了一下点分治&#xff0c;如果理解有误还请不吝赐教。 为了快速求得树上任意两点之间距离满足某种关系的点对数&#xff0c;我们需要用到这种算法。 点分治是树上的一种分治算法&#xff0c;依靠树和子树之间的关系进行分治从而降低复杂度。 和其他树上的算法有一些区别…

基于单链表的生产者消费者问题

『生产者与消费者问题分析』「原理」生产者生产产品&#xff0c;消费者消费产品。产品如果被消费者消费完了&#xff0c;同时生产者又没有生产出产品&#xff0c;消费者 就必须等待。同样的&#xff0c;如果生产者生产了产品&#xff0c;而消费者没有去消费&#x…

C++智能指针(一)智能指针的简单介绍

https://blog.csdn.net/nou_camp/article/details/70176949C智能指针 在正式了解智能指针前先看一下下面的一段代码 #include<iostream> using namespace std; class A { public:A():_ptr(NULL), _a(0){}~A(){} public:int* _ptr;int _a; };void test() {A a;int *p1 ne…

聪聪可可-点分治

聪聪和可可是兄弟俩&#xff0c;他们俩经常为了一些琐事打起来&#xff0c;例如家中只剩下最后一根冰棍而两人都想吃、两个人都想玩儿电脑&#xff08;可是他们家只有一台电脑&#xff09;……遇到这种问题&#xff0c;一般情况下石头剪刀布就好了&#xff0c;可是他们已经玩儿…

C++智能指针(二)模拟实现三种智能指针

https://blog.csdn.net/nou_camp/article/details/70186721在上一篇博客中提到了Auto_ptr(C智能指针&#xff08;一&#xff09;)&#xff0c;下面进行模拟实现Auto_ptr 采用类模板实现 #include<iostream> using namespace std; template<class T> class Autoptr …

Prime Distance On Tree-树分治+FFT

题目描述 Problem description. You are given a tree. If we select 2 distinct nodes uniformly at random, what’s the probability that the distance between these 2 nodes is a prime number? Input The first line contains a number N: the number of nodes in this…

C++智能指针(三)总结

https://blog.csdn.net/nou_camp/article/details/70195795 在上一篇博客中&#xff08;C智能指针&#xff08;二&#xff09;&#xff09;模拟实现了三种智能指针。 其中最好的就是shared_ptr,但是这并不代表它就是最完美的&#xff0c;它也有问题&#xff0c;这个问题就是循环…

POJ2114-Boatherds-树分治

题目描述 Boatherds Inc. is a sailing company operating in the country of Trabantustan and offering boat trips on Trabantian rivers. All the rivers originate somewhere in the mountains and on their way down to the lowlands they gradually join and finally th…

c++11 你需要知道这些就够了

https://blog.csdn.net/tangliguantou/article/details/50549751c11新特性举着火把寻找电灯今天我就权当抛砖引玉&#xff0c;如有不解大家一起探讨。有部分内容是引用自互联网上的内容&#xff0c;如有问题请联系我。T&& 右值引用 std::move 右值引用出现之前我们只能…

HDU5977-Garden of Eden-树分治+FWT

题目描述 When God made the first man, he put him on a beautiful garden, the Garden of Eden. Here Adam lived with all animals. God gave Adam eternal life. But Adam was lonely in the garden, so God made Eve. When Adam was asleep one night, God took a rib fro…

C++11新特性学习

https://blog.csdn.net/tennysonsky/article/details/778170481、什么是C11C11标准为C编程语言的第三个官方标准&#xff0c;正式名叫ISO/IEC 14882:2011 - Information technology -- Programming languages -- C。在正式标准发布前&#xff0c;原名C0x。它将取代C标准第二版I…

C++ override 关键字用法

override关键字作用&#xff1a; 如果派生类在虚函数声明时使用了override描述符&#xff0c;那么该函数必须重载其基类中的同名函数&#xff0c;否则代码将无法通过编译。举例子说明struct Base {virtual void Turing() 0;virtual void Dijkstra() 0;virtual void VNeumann…

Gym - 101981I-MagicPotion-最大流

题目描述 There are n heroes and m monsters living in an island. The monsters became very vicious these days, so the heroes decided to diminish the monsters in the island. However, the i-th hero can only kill one monster belonging to the set Mi. Joe, the st…