i510200h和i51035g1 哪个好

i5-10200H的酷睿处理器,它采用4核心8线程,和我们熟悉的i5-10300H相比,默认主频从2.5GHz降为了2.4GHz,最高(单核)睿频加速频率从4.5GHz降为了4.1GHz,综合性能下降了大约10%不到,但却换来了更低的采购价格。
选i5 10200h还是i51035g1 这些点很重要!看完你就知道了
https://list.jd.com/list.html?
在这里插入图片描述

酷睿i5-1035G1是一款高效的四核SoC,适用于基于Ice -Lake-U 系列的笔记本电脑和超极本 。它集成了四个Sunnycove处理器内核(由于HyperThreading而支持8个线程),主频为1(基本) – 3.7(单核Turbo)GHz。

使用Turbo Boost,2个内核可以达到3.6 GHz,所有4个3.3 GHz。据英特尔称,Sunnycove内核的IPC数量增加了18%,因此CPU性能应该与更高频率的Whiskey-Lake前代产品(例如 Core i5-8365U ,频率高达4.1 GHz)相似。Core i5-1035G1与类似的i5-1035G4和i5-1035G7的区别在于基本频率和显卡。

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
#pragma once #include"SequenceList.h" typedef struct { SequenceList Vertices; int edge[MaxVertices][MaxVertices]; int numOfEdges; }MatrixGraph; void Initiate(MatrixGraph* G, int n) { int i, j; for (i = 0; i < n; i++) for (j = 0; j < n; j++) { if (i = j) G->edge[i][j] = 0; else G->edge[i][j] = MaxWeight; } G->numOfEdges = 0; ListInitialize(&G->Vertices); } void InsertVertex(MatrixGraph* G, ElemType vertex) { ListInsert(&G->Vertices, G->Vertices.size, vertex); } void InsertEdge(MatrixGraph* G, int v1, int v2, int weight) { if (v1 < 0 || v1 >= G->Vertices.size || v2 < 0 || v2 >= G->Vertices.size) { printf("参数v1或v2越界出错\n"); exit(1); } G->edge[v1][v2] = weight; G->numOfEdges++; } void DeleteEdge(MatrixGraph* G, int v1, int v2) { if (v1 < 0 || v1 >= G->Vertices.size || v2 < 0 || v2 >= G->Vertices.size || v1 == v2) { printf("参数v1或v2越界出错\n"); exit(1); } G->edge[v1][v2] = MaxWeight; G->numOfEdges--; } void DeleteVertex(MatrixGraph* G, int v) { int n = ListLength(G->Vertices), i, j; ElemType x; for (i = 0; i < n; i++) for (j = 0; j < n; j++) if ((i == v || j == v) && G->edge[i][j] > 0 && G->edge[i][j] < MaxWeight) G->numOfEdges--; for (i = v; i < n; i++) for (j = 0; j < n; j++) G->edge[i][j] = G->edge[i + 1][j]; for (i = 0; i < n; i++) for (j = v; j < n; j++) G->edge[i][j] = G->edge[i][j + 1]; ListDelete(&G->Vertices, v, &x); } typedef struct { int row; int col; int weight; }RowColWeight; void CreatGraph(MatrixGraph* G, ElemType V[], int n, RowColWeight E[], int e) { int i, k; Initiate(G, n); for (i = 0; i < n; i++) InsertVertex(G, V[i]); for (k = 0; k < e; k++) InsertEdge(G, E[k].row, E[k].col, E[k].weight); } #include<stdio.h> #include<string.h> #define MaxWeight 10000 #define MaxVertices 6 #define MaxSize 100 typedef int ElemType; #include"MGraph.h" void main(void) { MatrixGraph g1; ElemType a[] = { '1','2','3','4','5','6' }; RowColWeight rcw[] = { {0,2,5},{1,0,3},{1,4,8},{2,1,15},{2,5,7},{4,3,4},{5,3,10},{5,4,18} }; int n = 6, e = 6; int i, j; CreatGraph(&g1, a, n, rcw, e); printf("顶点集合为"); for (i = 0; i < g1.Vertices.size; i++) { printf("%c", g1.Vertices.list[i]); } printf("\n"); printf("权值集合为:\n"); for (i = 0; i < g1.Vertices.size; i++) { for (j = 0; j < g1.Vertices.size; j++) printf("%5d", g1.edge[i][j]); printf("\n"); } }为何会乱码,无法正常显示,以及给出解决后的代码
05-21

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值