会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
hanxuyao
博客园
首页
新随笔
联系
订阅
管理
2024年10月19日
贪心算法
摘要: 贪心算法 贪心算法基本要素 1.贪心选择性质:通过每个子问题的最优选择,可以得到整个问题的最优解。 意味着,当我们面对一个问题时,我们就可以通过贪心策略来做出局部最优 的选择,最终得到全局最优的解。 2.最优子结构:问题的最优解包含子问题的最优解。意味着,问题可以分解 成若干个子问题,每个子问题可以
阅读全文
posted @ 2024-10-19 14:43 hanxuyao
阅读(7)
评论(0)
推荐(0)
编辑
2024年9月7日
服务端
摘要: //mysocket.h #ifndef __MYSOCKET_H__ #define __MYSOCKET_H__ //头文件保护 #include<bits/stdc++.h> #include<winsock.h> #pragma comment(lib,"ws2_32.lib") using
阅读全文
posted @ 2024-09-07 09:36 hanxuyao
阅读(9)
评论(0)
推荐(0)
编辑
客户端
摘要: #include"mysocket.h" using namespace std; int main() { cout << " 客户端 \n"; startup(); //启动 //检测版本号 if (LOBYTE(wsdata.wVersion) != 2 || HIBYTE(wsdata.wH
阅读全文
posted @ 2024-09-07 09:36 hanxuyao
阅读(9)
评论(0)
推荐(0)
编辑
2024年7月29日
读入写出
摘要: #include <bits/stdc++.h> #include <fstream> using namespace std; int main() { freopen("a.txt","r",stdin); freopen("b.txt","w",stdout); string s; cin>>
阅读全文
posted @ 2024-07-29 15:02 hanxuyao
阅读(3)
评论(0)
推荐(0)
编辑
2024年7月10日
阶乘和
摘要: 1 #include <bits/stdc++.h> 2 using namespace std; 3 int jc(int a) 4 { 5 if(a<=2) 6 { 7 return a; 8 } 9 return jc(a-1)*a; 10 } 11 12 int jch(int a) 13
阅读全文
posted @ 2024-07-10 15:57 hanxuyao
阅读(2)
评论(0)
推荐(0)
编辑
1172:求10000以内n的阶乘
摘要: /*#include <bits/stdc++.h> using namespace std; int main() { int n,sum=1; cin >> n; int a=n; for(int i=n-1;i>0;i--) { a=a*i; } cout<<a; return 0; }*/
阅读全文
posted @ 2024-07-10 15:39 hanxuyao
阅读(4)
评论(0)
推荐(0)
编辑
2024年6月22日
文本类型控件
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.
阅读全文
posted @ 2024-06-22 15:16 hanxuyao
阅读(4)
评论(0)
推荐(0)
编辑
2024年5月24日
cmd-字(一半)
摘要: #include <bits/stdc++.h> #include <windows.h> #include <conio.h> //控制台输入输出文件 using namespace std; int main() { HANDLE handle =GetStdHandle(STD_OUTPUT_
阅读全文
posted @ 2024-05-24 20:27 hanxuyao
阅读(5)
评论(0)
推荐(0)
编辑
2024年5月4日
窗口的扩展风格和基本风格
摘要: 1. DWORD dwExStyle //窗口的扩展风格(加强版专有)指定扩展的窗口样式。为以下值中的一个或多个(devc++用“|”连接):WS_EX_ACCEPTFILES 指定此样式创建一个窗口接受拖放文件。WS_EX_APPWINDOW 当窗口可见时布置一个顶级窗口到任务栏上。WS_EX_C
阅读全文
posted @ 2024-05-04 15:49 hanxuyao
阅读(200)
评论(0)
推荐(1)
编辑
窗口程序框架
摘要: #include <windows.h> //回调函数,消息处理函数 LRESULT CALLBACK WndProc(HWND hwnd, //窗口句柄 UINT Message,//消息 WPARAM wParam,//消息参数 LPARAM lParam) {//消息参数 switch(Mes
阅读全文
posted @ 2024-05-04 15:33 hanxuyao
阅读(1)
评论(0)
推荐(0)
编辑
下一页
公告