1.定义反转字符串 void changeOrder1(char* data){ if (data == NULL) { return; } auto nLen = strlen(data); char *p1 = data; char* p2 = p1 + (nLen - 1); while (p ...
分类:
编程语言 时间:
2020-06-20 22:30:43
阅读次数:
155
1、定义节点类、设置节点、遍历输出 class Node{ private String data; private Node next; public Node(String data){ this.data = data; } public String getData(){ return th ...
分类:
编程语言 时间:
2020-06-18 13:25:00
阅读次数:
52
1.单链表操作 class ListNode: def __init__(self,data): #data为数据项,next指向下一节点 self.data = data self.next = None class LinkList: def __init__(self): #初始化head指针 ...
分类:
其他好文 时间:
2020-06-15 20:57:48
阅读次数:
51
https://www.cnblogs.com/Free-Thinker/p/11937531.html 最长用到的就这三个位置 /data/data/包名/ /sdcard/Android/data/包名/ /sdcard/xxx前两个是应用内部存储, 会随着app的卸载而自动删除, sdcard ...
分类:
移动开发 时间:
2020-06-15 20:50:00
阅读次数:
57
使用mnist数据集实现手写数字识别是入门必做吧。这里使用pyTorch框架进行简单神经网络的搭建。 首先导入需要的包。 1 import torch 2 import torch.nn as nn 3 import torch.utils.data as Data 4 import torchvi ...
分类:
其他好文 时间:
2020-06-14 19:02:50
阅读次数:
76
type node struct { data int lchild *node rchild *node } func newNode(data int) *node { return &node{data: data} } type binaryTree struct { root *node ...
分类:
其他好文 时间:
2020-06-14 18:37:05
阅读次数:
50
#include <bits/stdc++.h> using namespace std; //左->data<节点->data<右->data struct node{ int data; node *lft, *rht; node(int data):data(data), lft(0),rht ...
分类:
其他好文 时间:
2020-06-13 19:38:50
阅读次数:
80
方法一: cookie是字典格式 import requests cookies_value = {'name1': 'value1', 'name2': 'value2'} response = requests.post(url=url, data=data, cookies=cookies_v ...
分类:
其他好文 时间:
2020-06-13 10:29:24
阅读次数:
421
需要的js <script src="http://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script> wx.config({ debug: true, // 开启调试模式 appId: data.data.appId, // 公众号的唯一标识 tim ...
分类:
微信 时间:
2020-06-12 12:27:44
阅读次数:
151
前言 我们需要先复习下原型链的知识,其实这个问题取决于 js ,而并非是 vue 。 function Component(){ this.data = this.data } Component.prototype.data = { name:'jack', age:22, } 复制代码 首先我们 ...
分类:
其他好文 时间:
2020-06-12 11:00:42
阅读次数:
59