码迷,mamicode.com
首页 >  
搜索关键字:ret    ( 30742个结果
LeetCode_139_单词拆分
class Solution { public boolean wordBreak(String s, List<String> wordDict) { return isContain(s, wordDict); } Map<String,Boolean> map = new HashMap<>( ...
分类:其他好文   时间:2021-03-17 14:50:42    阅读次数:0
C++ 关于 freopen 函数
C++ 关于 freopen 函数 名 称:freopen 所 属:stdio.h 功 能:用于重定向输入输出流。该函数可以在不改变代码原貌的情况下改变输入输出环境,但使用时应当保证流是可靠的。 实例 #include <bits/stdc++.h> using namespace std; int ...
分类:编程语言   时间:2021-03-17 14:47:39    阅读次数:0
用Python写一个小的购物车
Python简易项目--购物车 项目拆分 # 目录文件结构 - ATM - conf - settings.py - core - src.py - db - db_handler.py - interface - admin_interface.py - bank_interface.py - s ...
分类:编程语言   时间:2021-03-16 14:07:47    阅读次数:0
剑指 Offer 24. 反转链表
我真的服了。 关于tmp应该保存什么值,糊涂了,自己画内存图才明白。 tmp应该存的是oldHead.next而不是oldHead。难怪一直在循环里跳不出来。debug好久。 tmp要存将要被改变,但原来的值还要用的变量! /** * Definition for singly-linked lis ...
分类:其他好文   时间:2021-03-16 13:52:45    阅读次数:0
c语言中程序的循环控制(while循环,输入一个整数,输入从它开始到0的所有整数)
c语言中程序的循环控制,(while循环) 1、 #include <stdio.h> int main(void) { int i; puts("please input an integer!"); printf("i = "); scanf("%d", &i); while (i >= 0) ...
分类:编程语言   时间:2021-03-16 13:47:40    阅读次数:0
猴子爬山问题-递归
一个顽猴在一座有k级台阶的山上爬山跳跃,猴子上山一步可跳1级或跳3级,试求顽猴上山的N级台阶有多少种不同的跳法; 1.递推设计: 这一问题实际上是一个整数有序可重复拆分问题; 试设置数组应用递推求解,设上k级台阶的不同跳法为f(k)种; (1)、探求f(k)的递推关系; 假设:k=100; 上山最后 ...
分类:其他好文   时间:2021-03-16 11:53:16    阅读次数:0
用C程序打印空心星形 右倒置直角三角形
解题思路 用10*10网格 第0行打印0个空格10个星 第1行打印1个空格 第2行打印2个空格 以此类推 从第1行开始列如果(j0||j10-i-1)则打印星,否则打印空格 /* 打印如下: ********** * * * * * * * * * * * * * * ** * */ #includ ...
分类:其他好文   时间:2021-03-16 11:47:28    阅读次数:0
类中pthread_create()的线程入口函数
在类成员函数中如何调用pthread_create()呢? #incldue <pthread.h> int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine)(void *), v ...
分类:编程语言   时间:2021-03-16 11:47:13    阅读次数:0
Leetcode 107. Binary Tree Level Order Traversal II
Description: Given the root of a binary tree, return the bottom-up level order traversal of its nodes' values. (i.e., from left to right, level by lev ...
分类:其他好文   时间:2021-03-15 11:13:18    阅读次数:0
acwing 89. a^b
题目 求 aa 的 bb 次方对 pp 取模的值。 输入格式 三个整数 a,b,pa,b,p ,在同一行用空格隔开。 输出格式 输出一个整数,表示a^b mod p的值。 数据范围 0≤a,b≤1090≤a,b≤109 1≤p≤1091≤p≤109 输入样例: 3 2 7 输出样例: 2 #incl ...
分类:Windows程序   时间:2021-03-15 11:00:17    阅读次数:0
30742条   上一页 1 ... 34 35 36 37 38 ... 3075 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!