没有合适的资源?快使用搜索试试~ 我知道了~
DSA:数据结构算法黑客排名| 问题与解决方案:alien:
共91个文件
py:43个
c:37个
md:9个
需积分: 9 0 下载量 104 浏览量
2021-02-04
22:49:47
上传
评论
收藏 47KB ZIP 举报
温馨提示
数据结构与算法 问题解决方案+视频教程 C Array Data-structure 使用数组的10个数字的平均值 您将获得两个维度为N x N的矩阵,并用整数填充 通过传递给函数来计算数组元素的总和 使用函数计算数组中重复元素的总数 使用指针作为参数计算数组所有元素的总和 添加数组元素 从数组中删除元素 显示湿度 数组中第二高的数字 。 C Array Data-structure 取大小为n的一维数组。 它包含班上学生的姓名。 用分开的行打印名称 删除数组中的重复元素 使用数组执行两个多项式的乘法 在大小为m的一维数组上执行n的右移运算。 例如,说A [5] = {1,2,3,4,5}
资源推荐
资源详情
资源评论
收起资源包目录
DSA-master.zip (91个子文件)
DSA-master
Week-6
5. Take a paragraph as input and then check whether a specific word is present in the paragraph or not. the word also should be user input.py 257B
1. Write program to find the prime numbers in a range using function.py 178B
8. Given 2 strings, str1, and str2 return a new string made of the first, middle and last char of each of the input strings. characters from the 1st srting will be in lowercase and characters from the 2nd srting will be in uppercase.py 284B
7. Take a sentence as input. Take two integer numbers as input. Print the substring starting and ending at the positions same as those numbers.py 78B
README.md 2KB
2. Take n as input and check which ones are Armstrong number using a function in the range 1 to n.py 293B
4. Take a paragraph as input and then replace all the “the” word with “THE”.py 66B
3. Write a function to calculate GCD of two numbers and then call the function to get GCD of 4 numbers.py 393B
6. Take a paragraph as input and then delete all the white spaces at the beginning and the end of the paragraph.py 31B
Week-8
9.py 168B
6.py 345B
5.py 172B
README.md 996B
8.py 90B
4.py 1B
7.py 160B
2.py 147B
3.py 122B
1.py 134B
Week-1
8. Display humidity.c 1KB
9. Second Highest number in Array.c 1KB
4. count a total number of duplicate elements in the array using function.c 848B
1. The average of 10 numbers using Array.c 308B
README.md 1KB
3. Calculate the sum of array elements by passing to a function.c 774B
7. Delete elements from Array.c 429B
2. You are given two matrices of dimensions N x N, filled with integers. Your task is to print the product of these matrices.c 863B
6. Add array element.c 402B
5. Calculate sum of all elements of an array using pointers as arguments..c 613B
Week-5
6. You have a set of elements stored in a linked lsit. Delete all the odd numbers from the linked list.c 2KB
8. Sort the list using bubble sort.c 3KB
7. You have two linked lists given. Merge them into a single list.c 3KB
1. You have set of numbers stores in a linked list. Take another number n as user input and insert the element in a position in the linked list. the position of insetion is also given by the user.c 2KB
README.md 1KB
3. Add two given polynomil using linked list.c 3KB
5. You have a set of numbers stored in a linked list. Find the sum of all numbers in even positions in a linked list.c 1KB
2. Take a linked list as user input. Copy all the unique elements from that linked list into another new linked list.c 2KB
4. Multiply two given polynomial using linked list.c 3KB
Week-9.1
1.py 310B
Mid Semester-1
4. Rank of Word.py 512B
3. Simple Average 1.py 218B
1. Total Sales of Sourav.py 184B
2. Letter Histogram.py 391B
Week-7
5. delete an element from a given position in cicular linked list.c 1KB
2. Delete an element from a given position in doubly linked list.c 1KB
1. insert an element in a specific position in doubly linked list.c 1KB
6. Given two sorted doubly linked lists. Merge them into a single one without creating any new node.c 1KB
README.md 1KB
4. Insert elements at the end and the beginning of a circular linked list.c 888B
3. Insert at the beginning and at the end of a doubly linked list.c 902B
7. Reverse a circular linked list.c 1KB
8. Given a circular linked list. Split it into two separate circular linked lists without creating new nodes. One will contain all the odd numbers. Another one will contain all the even numbers.c 1B
.github
language.js 48B
Week-2
4. Perform right shift operation by n on an 1D array of size m. For example say, A[5] = {1,2,3,4,5}. If we are right shifting the elements by 3 then the output will be {4,5,1,2,3}.c 531B
6. Take a 2D array of size 2Xn. 1st row contains the roll numbers and 2nd row contains corresponding marks in exam. 'n' is the number of students here. Now sort the marks in ascending order along with the roll numbers and.c 612B
1. Take an 1D array of size n. It contains names of students in a class. Print the names in separated lines.c 260B
9. Transpose of a matrix.c 401B
README.md 1KB
5. A is a square matrix of dimension nxn. ‘n’ is user input. Calculate the value of the following equation A2+A+I.c 995B
2. Delete duplicate elements in Array.c 585B
8. Check whether a matrix of nXm size is sparse or not.c 495B
3. Perform multiplication of two polynomial using arrays.c 748B
README.md 7KB
Week-4
5. Print the factorial of n. Take n as user input.py 127B
8. prime or not.py 210B
9. print all factors.py 71B
2. Take a number n as input and check whether it is palindrome or not.py 159B
3. Take a number n as user input. Find its square root.py 61B
6. Armstrong or not.py 206B
README.md 937B
4. Print the numbers that are divisible by both 3 and 7 in the range 1 to n. take n as user input.py 83B
1. Take a number n as input and print the sum of all n natural numbers using for loop.py 67B
Week-3
8. convert seconds to day, hour, minutes and second.py 120B
9. Sort three integers using conditional statements.py 133B
5. subtract the smaller number from the larger number.py 74B
3. area of a circle.py 61B
7. Write a Python program to solve (x + y) _ (x + y).py 53B
2. even or odd.py 100B
README.md 1KB
1. Python program to get the volume of a sphere with radius 6. Take pi=3.14.py 66B
4. height of a triangle and compute the area.py 78B
6. Take the name, age and address as user input.py 94B
Week-9
2.c 1B
6.py 689B
5.c 545B
8.py 184B
9. 1B
4.py 524B
7.py 173B
1.c 372B
3.c 612B
共 91 条
- 1
资源评论
Jeckaijew
- 粉丝: 38
- 资源: 4532
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 手机2D平面游戏 JavaScript(练习)
- “工作日志管理创新”:公司办公系统的功能增强
- qt5-c++工业上位机自动扫码数据追溯 Qt5之工业应用 一套完整工程,链接PLC,工业无人值守自动扫码使用,无线扫码枪SR1000的使用,使用qt5.14,用qtcreator加载工程后,编译
- “宠物医院技术架构”:预约挂号系统的技术实现
- 硬盘摆臂轴承加胶机proe4.0可编辑全套技术资料100%好用.zip
- 基于simulink建立的PEMFC燃料电池机理模型(国外团队开发的,密歇根大学),包含空压机模型,空气路,氢气路,电堆等模型 可以正常进行仿真
- “工作管理智能化”:基本办公管理系统的技术架构
- 振动盘供料设备sw2018全套技术资料100%好用.zip
- 处理二维信号(或图像)的傅里叶变算法的MATLAB源代码,其中含:二维傅里叶变、用滤波器自动提取所需的频谱波峰、二维傅里叶反变、获取相位角分布、相位解包等频谱分析的整套流程(可用于干涉图处理)
- Java 入门教程.md
- 惠普常见消费激光控制面板按键组合操作说明202204
- Java 入门教程.md
- 基于C++的 BP CNN神经网络算法(不调用外源库)二选一 此程序里面包括BP和CNN神经网络,接近上千行代码的,由于程序不调用任何外源库,所以读者可以看清楚每一个算法的原理,要想学好神经网络,必须
- 硬盘折片激光辐射角度调整机3D+说明书proe4.0可编辑全套技术资料100%好用.zip
- 《优化理论及应用》大作业
- Java 开发就业方向和工作内容.md
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功