JIHEDlg.cpp
上传用户:wl_neon
上传日期:2022-08-05
资源大小:244k
文件大小:10k
源码类别:

界面编程

开发平台:

Visual C++

  1. // JIHEDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "JIHE.h"
  5. #include "JIHEDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAboutDlg dialog used for App About
  13. class CAboutDlg : public CDialog
  14. {
  15. public:
  16. CAboutDlg();
  17. // Dialog Data
  18. //{{AFX_DATA(CAboutDlg)
  19. enum { IDD = IDD_ABOUTBOX };
  20. //}}AFX_DATA
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CAboutDlg)
  23. protected:
  24. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. //{{AFX_MSG(CAboutDlg)
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  33. {
  34. //{{AFX_DATA_INIT(CAboutDlg)
  35. //}}AFX_DATA_INIT
  36. }
  37. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  38. {
  39. CDialog::DoDataExchange(pDX);
  40. //{{AFX_DATA_MAP(CAboutDlg)
  41. //}}AFX_DATA_MAP
  42. }
  43. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  44. //{{AFX_MSG_MAP(CAboutDlg)
  45. // No message handlers
  46. //}}AFX_MSG_MAP
  47. END_MESSAGE_MAP()
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CJIHEDlg dialog
  50. CJIHEDlg::CJIHEDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CJIHEDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CJIHEDlg)
  54. m_1 = _T("");
  55. m_2 = _T("");
  56. m_3 = _T("");
  57. //}}AFX_DATA_INIT
  58. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  59. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  60. }
  61. void CJIHEDlg::DoDataExchange(CDataExchange* pDX)
  62. {
  63. CDialog::DoDataExchange(pDX);
  64. //{{AFX_DATA_MAP(CJIHEDlg)
  65. DDX_Text(pDX, IDC_EDIT1, m_1);
  66. DDX_Text(pDX, IDC_EDIT2, m_2);
  67. DDX_Text(pDX, IDC_EDIT3, m_3);
  68. //}}AFX_DATA_MAP
  69. }
  70. BEGIN_MESSAGE_MAP(CJIHEDlg, CDialog)
  71. //{{AFX_MSG_MAP(CJIHEDlg)
  72. ON_WM_SYSCOMMAND()
  73. ON_WM_PAINT()
  74. ON_WM_QUERYDRAGICON()
  75. ON_BN_CLICKED(IDC_BUTTON1, Onjiao)
  76. ON_BN_CLICKED(IDC_BUTTON2, Onbing)
  77. ON_BN_CLICKED(IDC_BUTTON3, Onbu)
  78. ON_BN_CLICKED(IDC_BUTTON4, Oncha)
  79. ON_BN_CLICKED(IDC_BUTTON5, Onduichencha)
  80. ON_BN_CLICKED(IDC_BUTTON6, Onbaohan)
  81. //}}AFX_MSG_MAP
  82. END_MESSAGE_MAP()
  83. /////////////////////////////////////////////////////////////////////////////
  84. // CJIHEDlg message handlers
  85. BOOL CJIHEDlg::OnInitDialog()
  86. {
  87. CDialog::OnInitDialog();
  88. // Add "About..." menu item to system menu.
  89. // IDM_ABOUTBOX must be in the system command range.
  90. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  91. ASSERT(IDM_ABOUTBOX < 0xF000);
  92. CMenu* pSysMenu = GetSystemMenu(FALSE);
  93. if (pSysMenu != NULL)
  94. {
  95. CString strAboutMenu;
  96. strAboutMenu.LoadString(IDS_ABOUTBOX);
  97. if (!strAboutMenu.IsEmpty())
  98. {
  99. pSysMenu->AppendMenu(MF_SEPARATOR);
  100. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  101. }
  102. }
  103. // Set the icon for this dialog.  The framework does this automatically
  104. //  when the application's main window is not a dialog
  105. SetIcon(m_hIcon, TRUE); // Set big icon
  106. SetIcon(m_hIcon, FALSE); // Set small icon
  107. // TODO: Add extra initialization here
  108. return TRUE;  // return TRUE  unless you set the focus to a control
  109. }
  110. void CJIHEDlg::OnSysCommand(UINT nID, LPARAM lParam)
  111. {
  112. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  113. {
  114. CAboutDlg dlgAbout;
  115. dlgAbout.DoModal();
  116. }
  117. else
  118. {
  119. CDialog::OnSysCommand(nID, lParam);
  120. }
  121. }
  122. // If you add a minimize button to your dialog, you will need the code below
  123. //  to draw the icon.  For MFC applications using the document/view model,
  124. //  this is automatically done for you by the framework.
  125. void CJIHEDlg::OnPaint() 
  126. {
  127. if (IsIconic())
  128. {
  129. CPaintDC dc(this); // device context for painting
  130. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  131. // Center icon in client rectangle
  132. int cxIcon = GetSystemMetrics(SM_CXICON);
  133. int cyIcon = GetSystemMetrics(SM_CYICON);
  134. CRect rect;
  135. GetClientRect(&rect);
  136. int x = (rect.Width() - cxIcon + 1) / 2;
  137. int y = (rect.Height() - cyIcon + 1) / 2;
  138. // Draw the icon
  139. dc.DrawIcon(x, y, m_hIcon);
  140. }
  141. else
  142. {
  143. CDialog::OnPaint();
  144. }
  145. }
  146. // The system calls this to obtain the cursor to display while the user drags
  147. //  the minimized window.
  148. HCURSOR CJIHEDlg::OnQueryDragIcon()
  149. {
  150. return (HCURSOR) m_hIcon;
  151. }
  152. int CJIHEDlg::panduanCF()
  153. {
  154. UpdateData(1);
  155. m_3.Empty();
  156. CString m,n;
  157.     for (int i=0;i<=m_1.GetLength()/2;i++)
  158.    AfxExtractSubString(m, (LPCTSTR)m_1, i, ' ');
  159.    for (int j=i+1;j<=m_1.GetLength()/2;j++)
  160.    {
  161.           AfxExtractSubString(n, (LPCTSTR)m_1, j, ' ');
  162.    
  163.   if(m==n) {AfxMessageBox("重复输入!");m_1="";m_2="";UpdateData(0);return 1;}
  164.    }
  165. }
  166. for ( i=0;i<=m_2.GetLength()/2;i++)
  167.    AfxExtractSubString(m, (LPCTSTR)m_2, i, ' ');
  168.    for (int j=i+1;j<=m_2.GetLength()/2;j++)
  169.    {
  170.           AfxExtractSubString(n, (LPCTSTR)m_2, j, ' ');
  171.    
  172.   if(m==n) {AfxMessageBox("重复输入!");m_1="";m_2="";UpdateData(0);return 1;}
  173.    }
  174. }
  175.   return 0;
  176. }
  177. void CJIHEDlg::Onjiao() 
  178. {
  179.     UpdateData(1);  
  180. m_3.Empty();
  181.     if(panduanCF()) return;
  182.     CString tem,dem;
  183.      
  184. if(m_1=="" && m_2=="") {AfxMessageBox("交集为空,请输入元素"); m_3="";return ;}
  185. else {if(m_1==""||m_2=="") m_3="空集";
  186.      else
  187.  for (int i=0;i<=m_1.GetLength()/2;i++)
  188.  {
  189.  for (int j=0;j<=m_2.GetLength()/2;j++)
  190.  {
  191.                AfxExtractSubString(tem, (LPCTSTR)m_1, i, ' ');
  192.    AfxExtractSubString(dem, (LPCTSTR)m_2, j, ' ');
  193.    
  194.    if(tem==dem)
  195.   {
  196.  if(m_3.GetLength()==0)
  197.  m_3=tem;
  198.   else m_3=m_3+" "+tem;
  199.   }
  200.  }
  201. }
  202. }
  203.  if(m_3=="") m_3="空集";
  204.     UpdateData(0);
  205. }
  206. void CJIHEDlg::Onbing() 
  207. {
  208.    UpdateData(1); 
  209.    m_3.Empty();
  210.    UpdateData(0);
  211.    if(m_1=="" && m_2=="") {AfxMessageBox("并集为空,请输入元素"); return ;}
  212.    if(panduanCF()) return;
  213.    if(m_1=="" || m_2=="") {m_3=m_1+m_2;UpdateData(0);return;}
  214.  
  215.    m_3=m_1;
  216.    CString tem;
  217.    CString dem;
  218. for (int i=0;i<m_2.GetLength();i++)
  219.  {
  220.                AfxExtractSubString(tem, (LPCTSTR)m_2, i, ' ');
  221.    int flag=0;//没有一样的
  222.  
  223.    for (int j=0;j<m_1.GetLength();j++)
  224.  {
  225.    AfxExtractSubString(dem, (LPCTSTR)m_1, j, ' ');
  226.    
  227.    if(tem==dem)
  228.    {flag=1;break;}
  229.   
  230.  }
  231.     if(flag==0) m_3=m_3+" "+tem;
  232.  }
  233.     UpdateData(0);
  234.  
  235. }
  236. void CJIHEDlg::Onbu() 
  237. {
  238. UpdateData(1); 
  239.     m_3.Empty();
  240.     UpdateData(0);
  241.     if(m_1=="" && m_2=="") {AfxMessageBox("差集为空,请输入元素"); return ;}
  242.     if(panduanCF()) return;
  243.    if(m_2=="")  {m_3=m_1;UpdateData(0);return;}
  244.    if(m_1=="")  {m_3="空集";UpdateData(0);return;}
  245.    
  246.      CString tem;
  247.      CString dem;
  248.  
  249.  for (int i=0;i<=m_1.GetLength();i++)
  250.  {
  251.  int pd=1;
  252.  for (int j=0;j<=m_2.GetLength();j++)
  253.  {
  254.                AfxExtractSubString(tem, (LPCTSTR)m_1, i, ' ');
  255.    AfxExtractSubString(dem, (LPCTSTR)m_2, j, ' ');
  256.    
  257.    if(tem==dem) {pd=0;break;}
  258.  }
  259.  if (pd==1) m_3=m_3+tem+" ";
  260.  }
  261. UpdateData(0);
  262. }
  263. void CJIHEDlg::Oncha() 
  264. {
  265. UpdateData(1); 
  266.     m_3.Empty();
  267.     UpdateData(0);
  268.     if(m_1=="" && m_2=="") {AfxMessageBox("差集为空,请输入元素"); return ;}
  269.     if(panduanCF()) return;
  270.    if(m_1=="")  {m_3=m_2;UpdateData(0);return;}
  271.    if(m_2=="")  {m_3="空集";UpdateData(0);return;}
  272.    
  273.      CString tem;
  274.      CString dem;
  275.  
  276.  for (int i=0;i<=m_2.GetLength();i++)
  277.  {
  278.  int pd=1;
  279.  for (int j=0;j<=m_1.GetLength();j++)
  280.  {
  281.                AfxExtractSubString(tem, (LPCTSTR)m_2, i, ' ');
  282.    AfxExtractSubString(dem, (LPCTSTR)m_1, j, ' ');
  283.    
  284.    if(tem==dem) {pd=0;break;}
  285.  }
  286.  if (pd==1) m_3=m_3+tem+" ";
  287.  }
  288. UpdateData(0);
  289. }
  290. void CJIHEDlg::Onduichencha() 
  291. {
  292. UpdateData(1); 
  293.     m_3.Empty();
  294.     UpdateData(0);
  295.     if(m_1=="" && m_2=="") {AfxMessageBox("对称差为空,请输入元素"); return;}
  296.     if(panduanCF()) return;
  297.    if(m_1=="")  {m_3=m_2;UpdateData(0);return;}
  298.    if(m_2=="")  {m_3=m_1;UpdateData(0);return;}
  299. CString tem;
  300.     CString dem;
  301. for (int i=0;i<=m_1.GetLength();i++)
  302.  {
  303.  int pd=1;
  304.  for (int j=0;j<=m_2.GetLength();j++)
  305.  {
  306.                AfxExtractSubString(tem, (LPCTSTR)m_1, i, ' ');
  307.    AfxExtractSubString(dem, (LPCTSTR)m_2, j, ' ');
  308.    
  309.    if(tem==dem) {pd=0;break;}
  310.  }
  311.  if (pd==1) m_3=m_3+tem+" ";
  312.  }  
  313. for (i=0;i<=m_2.GetLength();i++)
  314.  {
  315.  int pd=1;
  316.  for (int j=0;j<=m_1.GetLength();j++)
  317.  {
  318.                AfxExtractSubString(tem, (LPCTSTR)m_2, i, ' ');
  319.    AfxExtractSubString(dem, (LPCTSTR)m_1, j, ' ');
  320.    
  321.    if(tem==dem) {pd=0;break;}
  322.  }
  323.  if (pd==1) m_3=m_3+tem+" ";
  324.  }
  325.  UpdateData(0);
  326.    
  327. }
  328. void CJIHEDlg::Onbaohan() 
  329. {
  330. UpdateData(1);
  331. m_3.Empty();
  332. if(m_1==""&&m_2=="") {AfxMessageBox("A B为空集");return;}
  333. if(panduanCF()) return;
  334. if(m_1=="") {AfxMessageBox("A为空集,B包含A");return;}
  335. if(m_2=="") {AfxMessageBox("B为空集,A包含B");return;}
  336. if(m_1==m_2)  {AfxMessageBox("A B相等");return;}
  337. //////////////////////////////
  338. CString m_4,tem,dem;//交
  339. for (int i=0;i<=m_1.GetLength()/2;i++)
  340.  {
  341.      AfxExtractSubString(tem, (LPCTSTR)m_1, i, ' ');
  342.  
  343.  for (int j=0;j<=m_2.GetLength()/2;j++)
  344.  {
  345.    AfxExtractSubString(dem, (LPCTSTR)m_2, j, ' ');
  346.    
  347.    if(tem==dem)
  348.   {
  349.    if(m_4=="") m_4=tem;
  350.    else {m_4=m_4+" "+tem;
  351.    break;}
  352.   }
  353.  }
  354. }
  355. if(m_4.GetLength()==0)  {AfxMessageBox("A B互斥");return;}
  356. if(m_4.GetLength()/2==m_1.GetLength()/2)  {AfxMessageBox("B包含A");return;}
  357.     
  358. if(m_4.GetLength()/2==m_2.GetLength()/2)  {AfxMessageBox("A包含B"); return;}
  359. else {AfxMessageBox("A B相交");return;}
  360. }