mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-10-31 18:37:48 +08:00 
			
		
		
		
	 a005c6ebd3
			
		
	
	a005c6ebd3
	
	
	
		
			
			* Update avatar's link in the landing page * Bug fixes * Move assets folder from overrides to docs * Reduce figures' corner radius * Update copyright * Update header image * Krahets -> krahets * Update the landing page
		
			
				
	
	
		
			50 lines
		
	
	
		
			950 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			950 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /**
 | |
|  * File: vertex.h
 | |
|  * Created Time: 2023-10-28
 | |
|  * Author: krahets (krahets@163.com)
 | |
|  */
 | |
| 
 | |
| #ifndef VERTEX_H
 | |
| #define VERTEX_H
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| /* 顶点结构体 */
 | |
| typedef struct {
 | |
|     int val;
 | |
| } Vertex;
 | |
| 
 | |
| /* 构造函数,初始化一个新节点 */
 | |
| Vertex *newVertex(int val) {
 | |
|     Vertex *vet;
 | |
|     vet = (Vertex *)malloc(sizeof(Vertex));
 | |
|     vet->val = val;
 | |
|     return vet;
 | |
| }
 | |
| 
 | |
| /* 将值数组转换为顶点数组 */
 | |
| Vertex **valsToVets(int *vals, int size) {
 | |
|     Vertex **vertices = (Vertex **)malloc(size * sizeof(Vertex *));
 | |
|     for (int i = 0; i < size; ++i) {
 | |
|         vertices[i] = newVertex(vals[i]);
 | |
|     }
 | |
|     return vertices;
 | |
| }
 | |
| 
 | |
| /* 将顶点数组转换为值数组 */
 | |
| int *vetsToVals(Vertex **vertices, int size) {
 | |
|     int *vals = (int *)malloc(size * sizeof(int));
 | |
|     for (int i = 0; i < size; ++i) {
 | |
|         vals[i] = vertices[i]->val;
 | |
|     }
 | |
|     return vals;
 | |
| }
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 | |
| 
 | |
| #endif // VERTEX_H
 |