E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Using
过滤器选样条曲线和椭圆——转多段线——c#
filterList=newTypedValue[]{newTypedValue((int)DxfCode.Start,"LINE,CIRCLE,ELLIPSE,ARC,SPLINE,POLYLINE")};
using
Autodesk.AutoCAD.DatabaseServices
山水CAD筑梦人
·
2025-04-29 07:55
c#
开发语言
C++中析构函数
示例代码#include
using
na
喵先生!
·
2025-04-29 06:15
c++
开发语言
C++UDP发包收包——有完整的封装呀
首先我们要定义类:#include#include#pragmacomment(lib,"Ws2_32.lib")
using
namespacestd;classmysocket{sockaddr_inUDPbroadcast
张师睿
·
2025-04-29 05:35
c++
udp
开发语言
网络协议
网络
经验分享
服务结构发布/订阅:构建事件驱动架构的解决方案
服务结构发布/订阅:构建事件驱动架构的解决方案service-fabric-pub-subDoyouwanttocreateanEventDrivenArchitecturewhile
using
AzureServiceFabric
凤尚柏Louis
·
2025-04-29 03:23
天梯——L1-110 这不是字符串题
代码#include
using
namespacestd;intmain(){intn,m;cin>>n>>m;strings;for(inti=0;i>x;s+=char(x+'0');}while(m
一定要AK
·
2025-04-29 02:13
算法
c++
数据结构
【Unity】简单实现基于TCP的阻塞式Socket的文本消息通信
1.准备工具Unity:用于建立客户端VisualStudio:通过C#控制台建立服务端2.建立服务端在VisualStudio中创建一个C#控制台工程,粘贴下面的代码
using
System;
using
System.Net.Sockets
Gamer_君莫愁
·
2025-04-28 23:26
Unity学习
tcp/ip
网络协议
网络
unity
c#
游戏引擎
LLM并行计算的论文
LLM并行计算的论文基础并行计算方法相关《Gpipe:EfficientTrainingofGiantNeuralNetworks
using
PipelineParallelism》:提出了Gpipe这种流水线并行方法
ZhangJiQun&MXP
·
2025-04-28 22:21
2021
论文
2021
AI
python
教学
人工智能
自然语言处理
语言模型
【TUST“码蹄杯”编程之星】4.27号每日一题-23101206李迪菲
你可以对该数组执行以下操作:选择两个不同的整数i,j(1≤i
using
namespacestd;#definelllonglong#defineMODintmain(){ios::sync_with_stdio
恒757
·
2025-04-28 21:11
算法
C# 类的成员
类成员:构造函数、析构函数构造函数c#教程分为:实例构造器和类型构造器2.C#类成员:常量、字段3.C#类成员:属性、索引器4.C#类成员:方法、事件5.C#类成员:运算符重载6.C#类成员:嵌套类1
using
System
chinaherolts2008
·
2025-04-28 16:39
C#教程
c#教程
蓝桥杯 11. 打印大X
其中:0
using
namespacestd;intmain(){intm,n;cin>>m>>n;intw=n-1+m,l=0,r=w-1;while(l<=n-1){string
wuqingshun314159
·
2025-04-28 08:52
蓝桥杯题库
蓝桥杯
算法
职场和发展
深度优先
数据结构
图论---LCA(Tarjan 离线做法)
#include
using
namespacestd;typedefpairpii;constintN=20010,M=2*N;//是无向边,边需要见两边intn,m;vectorg[N];intp[N]
快乐的小涵
·
2025-04-28 00:59
图论
算法
数据结构
ECE391: Computer Systems Engineering
ECE391:ComputerSystemsEngineeringSpring2025MachineProblem3Contents1Introduction2
Using
theGroupRepository3ThePiecesCheckpoint1
·
2025-04-27 23:48
后端
Unity技能编辑器
所以我们需要再我们创建的项目中首先创建一个Editor编辑器文件夹,并将需要执行的编辑实现的效果就是这样的,下一步我们将对立面进行分行选择编辑,这个时候我们就需要使用编辑器中OnGUI这个方法进行编辑器功能展示
using
System.Collections
油腻的壮壮
·
2025-04-27 23:22
编辑器
c++初阶--vector的实现
下面是vector的代码:vector.h#pragmaonce#include#include
using
namespacestd;namespaceone{templateclassvector{public
濊繵
·
2025-04-27 20:02
c++
c++
C++ 100~n之间的所有整数,数字x共出现的次数
题目:编写程序,计算区间100~n之间的所有整数(100
using
namespacestd;intmain(){intn,x;intcount=0;cin>>n>>x;intg=0,s=0,b=0;for
xzal12
·
2025-04-27 15:05
C++
c++
C51汇编伪指令(转载)
3、
USING
指令
USING
指令通知汇
winkyxiao1981
·
2025-04-27 15:34
C51单片机
汇编
c
存储
编译器
table
工作
素数筛法 - 欧拉筛法
自然也就从O(n2)到O(√n)2.著名的埃式筛法 时间复杂度:O(nloglogn)而要谈的欧拉筛法则是在埃式筛法的基础上再次进行优化3.欧拉筛法 时间复杂度为:O(n)#include
using
namespacestd
dailelelelele
·
2025-04-27 15:33
算法
算法
Keil A51汇编伪指令
条件编译等关键功能,结合实际应用场景进行分类和示例:一、程序结构与地址控制伪指令功能语法示例说明ORG设置代码/数据起始地址ORG0000H后续代码从指定地址开始存放END程序结束标记END必须放在文件末尾
USING
zhmc
·
2025-04-27 14:29
C51
汇编
高精度除法(高精除底精)
代码:#include#include
using
namespacestd;constintN=1110;
using
namespacestd;intmain(){strings;//被除数的字符形式intx
欲掩
·
2025-04-27 10:30
算法
c++
数据结构
牛客小白月赛115
目录A过马路B签到题C命运之弹(EasyVersion)A过马路#include
using
namespacestd;intmain(){inta,b,c;cin>>a>>b>>c;if(a==b||b=
三流搬砖艺术家
·
2025-04-27 10:30
牛客
算法
c++
数据结构
LeetCode-415. Add Strings [C++][Java]
Giventwonon-negativeintegers,num1andnum2representedasstring,returnthesumofnum1andnum2asastring.Youmustsolvetheproblemwithout
using
an
贫道绝缘子
·
2025-04-27 07:43
LeetCode刷题怪
leetcode
算法
职场和发展
嵌入式编程中应如何使用 mmap 访问 CPU 寄存器
/dev/memmmap详解Linux驱动虚拟地址和物理地址的映射嵌入式Linux应用程序如何读取(修改)芯片寄存器的值file-C-Buserrorwhen
using
mmap-StackOverflowmmap
·
2025-04-26 22:43
typescript
C# 跨进程 临界区 互斥 进程锁
namespaceSystem{
using
System.Threading;//////跨进程的临界区。
董先生_ad986ad
·
2025-04-26 18:53
C#
c#
开发语言
小山菌_代码随想录算法训练营第六十一天|拓扑排序精讲、dijkstra(朴素版)精讲
拓扑排序精讲文档讲解:代码随想录.拓扑排序精讲视频讲解:无状态:已完成代码实现#include#include#include#include
using
namespacestd;intmain(){intm
小山菌
·
2025-04-26 18:20
算法
代码随想录算法训练营第五十一天 |拓扑排序精讲 dijkstra(朴素版)精讲
%E8%BD%AF%E4%BB%B6%E6%9E%84%E5%BB%BA.html#include#include#include#include
using
namespacestd;intmain(){
S1588994
·
2025-04-26 18:47
算法
部署ollama大模型
Ollamaservercanbeconfiguredwithenvironmentvariables.SettingenvironmentvariablesonMacIfOllamaisrunasamacOSapplication,environmentvariablesshouldbeset
using
launchctl
小赖同学啊
·
2025-04-26 16:37
python
人工智能
语言模型
自然语言处理
边和图的存储(邻接表)
//边和图的存储(邻接表)#include#include
using
namespacestd;constintN=100010,M=N*2;//h存的n个链表的链表头inth[N],e[N],ne[N]
快乐的小涵
·
2025-04-26 15:58
深度优先
图论
算法
嵌入式编程中应如何使用 mmap 访问 CPU 寄存器
/dev/memmmap详解Linux驱动虚拟地址和物理地址的映射嵌入式Linux应用程序如何读取(修改)芯片寄存器的值file-C-Buserrorwhen
using
mmap-StackOverflowmmap
·
2025-04-26 14:30
typescript
C#语言实现PDF转Excel
实现效果第三方库ClosedXMLiTextSharp实现源码
using
System.Text;
using
iTextSharp.text.pdf;
using
iTextSharp.text.pdf.parser
后青春期的诗go
·
2025-04-26 13:18
编程语言
pdf
c#
桌面应用
.net
编程日志4.21
单链表部分题目1.Problem-1092#include#include
using
namespacestd;#defineeleTypeintstructListNode{eleTypedata;//
牛牛程序员成长日记
·
2025-04-26 13:44
算法
数据结构
2024年全国青少年信息素养大赛(C++算法创意实践初赛真题)
2024年全国青少年信息素养大赛C++算法创意实践初赛真题编写程序,计算区间100~n之间的所有整数(100
using
namespacestd;intmain(){intn,x.cnt=0;cin>>n
Da_秀
·
2025-04-26 12:37
青少年信息素养大赛
c++
算法
数据结构
【模板】普通平衡树(数据加强版)(洛谷P6136)
#include#defineendl'\n'#defineintll
using
ll=longlong;typedefunsignedlonglongull;
using
namespacestd;voidGordenGhost
GordenGhost
·
2025-04-26 11:04
算法
c++
洛谷
平衡树
数据结构
splay
论文笔记--Sentence-BERT: Sentence Embeddings
using
Siamese BERT-Networks
论文笔记--Sentence-BERT:SentenceEmbeddings
using
SiameseBERT-Networks1.文章简介2.文章导读2.1概括2.2文章重点技术2.2.1池化层2.2.2
Isawany
·
2025-04-26 10:56
论文阅读
论文阅读
bert
语言模型
transformer
nlp
图论---Prim堆优化(稀疏图)
#include#include#include#include
using
namespacestd;constintN=510,INF=0x3f3f3f3f;typedefpairPII;//(distance
快乐的小涵
·
2025-04-26 09:54
图论
算法
图论---Kruskal(稀疏图)
1,将所有边按权重从小到大排序,调用系统的sort()2,枚举每条边的a,b,权重if(a、b不联通)就将这条边加入集合中//最小生成树—Kruskal算法(稀疏图)#include#include
using
namespacestd
快乐的小涵
·
2025-04-26 09:22
图论
c++
算法
数据结构
Milvus ConnectionRefusedError: how to connect locally
连接Milvus数据库被拒绝的错误问题背景:IamtryingtorunaRAGpipeline
using
haystack&Milvus.我正在尝试使用haystack和Milvus运行一个RAG(检索增强型生成
营赢盈英
·
2025-04-26 07:09
AI
milvus
database
llm
haystack
算法笔记.高精度除法
数据范围1≤A.length≤100000,1≤B≤10000,B一定不为0输入样例:14412输出样例:120我的代码:#include
using
namespacestd;#includeintt=0
xin007hoyo
·
2025-04-26 06:59
算法学习笔记
算法
c++
笔记
数据结构
二叉树前中后遍历递归法【完整代码(超简单)】
直接bia代码//二叉树的前中后序遍历【递归法】#include
using
namespacestd;//结点结构体typedefstructBTnode{chardata;//自己的数据BTnode*lch
Kathryn7
·
2025-04-26 03:42
算法
数据结构
c++
操作系统:磁盘调度实现
#include#include#include#include
using
namespacestd;intrequest[999];//用于记录访问的磁道号//intrequest[]{30,50,100,180,20,90,150,70,80,10,160,120,40,110
洛水入长安
·
2025-04-26 03:09
算法
c++
C++实现快速幂算法
以下是C++实现快速幂算法的源代码:#include
using
namespace
温柔倩影
·
2025-04-26 02:00
编程
算法
c++
数据结构
编程
2025/4/16 心得
例题2.2.1糖块现在有n(1
using
namespacestd;intn,m,a,b,sum[1000010],sum1[1000010];intmain(){freopen("candy.in","
bbc121226
·
2025-04-26 00:22
数据结构
算法
零件分类——c#
using
Autodesk.AutoCAD.DatabaseServices;
using
Autodesk.AutoCAD.EditorInput;
using
Autodesk.AutoCAD.GraphicsInterface
山水CAD筑梦人
·
2025-04-26 00:50
CAD
C#二次开发
分类
c#
数据挖掘
C++ STL之deque
1.定义分段的连续内存,可以通过前面和后面增加内存(分段内存数组)2.基本用法//头文件#include
using
namespacestd;//基本操作定义:deque变量名;Eg:dequeque;/
智能视觉工作室
·
2025-04-25 23:45
C与C++
C#:实现聚类K-means cluster算法 (附完整源码)
C#:实现聚类K-meanscluster算法以下是CSharp实现聚类K-meanscluster算法的源代码:
using
System;
using
System.Collections.Generic;
源代码大师
·
2025-04-25 21:56
C#算法完整教程
算法
c#
聚类
调不出来的问题记录(链式前向星+拓扑排序)
defineforr(i,l,r)for(inti=l;i=l;i--)#defineintlonglong#definepiipair#defineendl'\n'#definePI3.14159265
using
namespacestd
啊我不会诶
·
2025-04-25 20:17
问题
算法
每日一题~ cf div3 957 D+E(若只dp,暴力枚举)
(脑袋木了)题意:nmkn长的字符,mk可以跳跃的最大距离(每次跳跃的距离1
using
namespacestd;voidsolve(){intn,m,k;cin>>n>>m>>k;strings;cin
窜天遁地大吗喽
·
2025-04-25 19:11
每日一题
算法
Null-text Inversion for Editing Real Images
using
Guided Diffusion Models
Null-textInversionforEditingRealImages
using
GuidedDiffusionModels(Paperreading)RonMokady,GoogleResearch
努力学图像处理的小菜
·
2025-04-25 19:08
图像处理
扩散模型
Tricks
人工智能
计算机视觉
prompt
stable
diffusion
深度学习
C#服务端性能优化实战:10招让QPS飙升10倍,代码深度解析与极限调优
倍的索引设计监控告警自动化:用Prometheus+Grafana实时“盯住”性能红线二、核心优化技巧与代码实现1.火焰图分析:精准定位性能瓶颈//文件路径:PerformanceProfiler.cs
using
System.Diagnosti
墨夶
·
2025-04-25 18:05
C#学习资料
c#
性能优化
网络
C# 实现TCP/IP通信协议——Message结构设计
using
System;
using
System.Collections.Generic;
using
System.Globalization;
using
System.IO;
using
System.Linq
QUST-Learn3D
·
2025-04-25 15:14
C#
TCP/IP通讯
c#
c++类 求长方体面积和体积
#include
using
namespacestd;classCube{public://设置长voidsetL(intl){m_L=l;}//获取长intgetL(){returnm_L;}//设置宽
小蜗 strong
·
2025-04-25 14:06
c++
开发语言
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他