上一页 1 2 3 4 5 6 7 8 ··· 29 下一页
摘要: 依然是简单题,熟悉 uthash 的使用。终于想通了,为何封装 HASH_ADD 等相关方法时,需要传入指针的指针,因为 uthash 库的实现都是写在宏中的,编译后不是函数调用,而是代码替换! C: #include "stdbool.h" #include <string.h> #include 阅读全文
posted @ 2022-03-08 15:27 牛有肉 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 简单问题,熟悉下 C 的哈希表,使用第三方库: C: typedef struct Hash { int key; UT_hash_handle hh; } Hash; int hashExit(int key, Hash **hashs) { Hash *target = NULL; HASH_F 阅读全文
posted @ 2022-03-07 18:21 牛有肉 阅读(30) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE HTML> <html> <head lang="en"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>图片剪切</title> </head> <body> <div id 阅读全文
posted @ 2022-02-22 15:48 牛有肉 阅读(494) 评论(0) 推荐(0) 编辑
摘要: C: int *level(int *pre, int rowIndex, int currLevel, int *returnSize) { int currSize = *returnSize + 1; int *currList = (int *)malloc(sizeof(int) * cu 阅读全文
posted @ 2022-02-21 10:08 牛有肉 阅读(19) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE HTML> <html> <head> <meta charset=utf-8> <title>获取相对坐标</title> <style type="text/css"> body { padding: 0px; margin: 0px; } .container { widt 阅读全文
posted @ 2022-02-16 17:43 牛有肉 阅读(759) 评论(0) 推荐(0) 编辑
摘要: C: int getMinInRow(int **matrix, int rowSize, int rowPoint) { int minPoint = 0, minValue = matrix[rowPoint][0]; for (int i = 1; i < rowSize; i++) { if 阅读全文
posted @ 2022-02-15 17:44 牛有肉 阅读(43) 评论(0) 推荐(0) 编辑
摘要: (function (window) { window.URL = window.URL || window.webkitURL; navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || n 阅读全文
posted @ 2022-01-14 09:16 牛有肉 阅读(696) 评论(0) 推荐(1) 编辑
摘要: blobLoad(src, obj) { let self = this; const req = new XMLHttpRequest(); req.open("GET", src, true); req.responseType = "blob"; req.onload = function ( 阅读全文
posted @ 2022-01-13 13:58 牛有肉 阅读(2693) 评论(0) 推荐(0) 编辑
摘要: 前提是有 rman 备份。 rman 全备 run 块: run{ allocate channel c1 type disk; allocate channel c2 type disk; allocate channel c3 type disk; backup as compressed ba 阅读全文
posted @ 2021-12-20 12:41 牛有肉 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 1、show parameter memory_target; 查看当前配置2、create pfile='/tmp/pfile.ora' from spfile; 备份参数文件3、show parameter sga; show parameter pga; 查看 sga_target、pga_a 阅读全文
posted @ 2021-12-15 10:49 牛有肉 阅读(944) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 29 下一页