05 2020 档案
摘要:题目来源:LeetCode739 1 // 链表节点 2 typedef struct Node { 3 int value; // 气温 4 int index; // 下标 5 struct Node *next; 6 } pNode; 7 8 // 栈 9 typedef struct MyS
阅读全文
摘要:参考博客:https://blog.csdn.net/qq_36982160/article/details/81260273 参考github:https://github.com/ZhaoYukai/HeartRate 如果运行时出现Program type already present: a
阅读全文
摘要:1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <stdbool.h> 4 5 typedef struct { 6 int val; 7 struct MyLinkedList *next; 8 } MyLinkedList; 9 10
阅读全文
摘要:用到的技术:bmob后端云、ListView 运行效果图: 项目结构图: 首先要配置好bmob的环境:https://www.cnblogs.com/hemeiwolong/p/12874714.html 剩下的看源码 manifests: 1 <?xml version="1.0" encodin
阅读全文
摘要:参考链接:http://doc.bmob.cn/data/android/#sdk_1 如果报错Error: Invoke-customs are only supported starting with Android O (--min-api 26):https://blog.csdn.net/
阅读全文